.cmn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 4px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 300;
}
@media (max-width: 428px) {
  .cmn-header {
    height: 56px;
    padding-left: 1px;
  }
}

.cmn-header_logo {
  width: 308px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/logo-en-light-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (max-width: 428px) {
  .cmn-header_logo {
    width: 231px;
    height: 54px;
    justify-content: flex-start;
  }
}
.cmn-header_logo:hover .cmn-header_logo--img {
  opacity: 0.7;
}
@media (max-width: 428px) {
  .cmn-header_logo:hover .cmn-header_logo--img {
    opacity: 1;
  }
}
.cmn-header_logo--img {
  display: block;
  transition: 0.3s;
}
@media (max-width: 428px) {
  .cmn-header_logo--img {
    margin-left: 20px;
    width: 148px;
  }
}

.cmn-header_nav {
  height: 100%;
}
@media (max-width: 1000px) {
  .cmn-header_nav {
    display: none;
  }
}
.cmn-header_nav--list {
  display: flex;
  align-items: center;
  height: 100%;
}
.cmn-header_nav--item {
  height: 100%;
  margin-right: 40px;
}
.cmn-header_nav--item:last-of-type {
  margin-right: 0;
}
.cmn-header_nav--link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.cmn-header_nav--link:hover .cmn-header_nav--ja,
.cmn-header_nav--link:hover .cmn-header_nav--en {
  transform: translateY(-3px);
}
.cmn-header_nav--link-contact {
  background-color: #002174;
  width: 176px;
}
.cmn-header_nav--link-contact:hover {
  background-color: #1F3C85;
}
.cmn-header_nav--link-contact:hover .cmn-header_nav--ja,
.cmn-header_nav--link-contact:hover .cmn-header_nav--en {
  transform: none;
}
.cmn-header_nav--ja {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transition: 0.3s;
}
.cmn-header_nav--ja-contact {
  color: #fff;
}
.cmn-header_nav--en {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.33;
  color: #002174;
  font-family: "Roboto", serif;
  letter-spacing: 0.08em;
  font-style: italic;
  letter-spacing: 0.16em;
  transition: 0.3s;
}
.cmn-header_nav--en-contact {
  color: #fff;
}

.cmn-header_hmb {
  display: none;
}
@media (max-width: 1000px) {
  .cmn-header_hmb {
    display: block;
    width: 40px;
    height: 28px;
    margin-right: 32px;
    position: relative;
    z-index: 100;
  }
}
@media (max-width: 428px) {
  .cmn-header_hmb {
    width: 24px;
    height: 22px;
    margin-right: 16px;
  }
}
.cmn-header_hmb:hover {
  opacity: 0.7;
}
@media (max-width: 428px) {
  .cmn-header_hmb:hover {
    opacity: 1;
  }
}
.cmn-header_hmb.is-sp_menu_open .cmn-header_hmb--line:first-of-type {
  transform: rotate(36deg);
  top: 12px;
}
@media (max-width: 428px) {
  .cmn-header_hmb.is-sp_menu_open .cmn-header_hmb--line:first-of-type {
    top: 9px;
    transform: rotate(36deg);
  }
}
.cmn-header_hmb.is-sp_menu_open .cmn-header_hmb--line:nth-of-type(2) {
  display: none;
}
.cmn-header_hmb.is-sp_menu_open .cmn-header_hmb--line:last-of-type {
  transform: rotate(-36deg);
  bottom: 12px;
}
@media (max-width: 428px) {
  .cmn-header_hmb.is-sp_menu_open .cmn-header_hmb--line:last-of-type {
    bottom: 10px;
    transform: rotate(-36deg);
  }
}
.cmn-header_hmb--line {
  display: block;
  background-color: #002174;
  height: 3px;
  width: 100%;
  transition: 0.3s;
  position: absolute;
  left: 0;
}
.cmn-header_hmb--line:first-of-type {
  top: 0;
}
.cmn-header_hmb--line:nth-of-type(2) {
  top: 12px;
}
@media (max-width: 428px) {
  .cmn-header_hmb--line:nth-of-type(2) {
    top: 9px;
  }
}
.cmn-header_hmb--line:last-of-type {
  bottom: 0;
}

.cmn-header_sp_nav {
  display: none;
}
@media (max-width: 1000px) {
  .cmn-header_sp_nav {
    display: block;
    position: fixed;
    top: 0;
    right: -150%;
    height: 100vh;
    width: 100%;
    transition: 0.3s;
  }
  .cmn-header_sp_nav.is-sp_menu_open {
    right: 0;
  }
}
.cmn-header_sp_nav--overlay {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .cmn-header_sp_nav--list {
    width: 600px;
    max-width: 100%;
    height: 100%;
    padding-top: 85px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.92);
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 428px) {
  .cmn-header_sp_nav--list {
    width: 188px;
  }
}
.cmn-header_sp_nav--item {
  text-align: center;
  margin-top: 20px;
}
.cmn-header_sp_nav--item:first-of-type {
  margin-top: 0;
}
.cmn-header_sp_nav--link:hover .cmn-header_sp_nav--ja,
.cmn-header_sp_nav--link:hover .cmn-header_sp_nav--en {
  transform: translateY(-3px);
}
@media (max-width: 428px) {
  .cmn-header_sp_nav--link:hover .cmn-header_sp_nav--ja,
  .cmn-header_sp_nav--link:hover .cmn-header_sp_nav--en {
    transform: translateY(0);
  }
}
.cmn-header_sp_nav--ja {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transition: 0.3s;
  display: inline-block;
}
.cmn-header_sp_nav--ja-2cols {
  line-height: 1.3;
}
.cmn-header_sp_nav--en {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.33;
  color: #002174;
  font-family: "Roboto", serif;
  letter-spacing: 0.08em;
  font-style: italic;
  letter-spacing: 0.16em;
  transition: 0.3s;
  display: inline-block;
}

.cmn-main {
  display: block;
  margin-top: 80px;
  background-color: #EBEDF4;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 428px) {
  .cmn-main {
    margin-top: 56px;
  }
}

.cmn-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
@media (max-width: 428px) {
  .cmn-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cmn-contact--wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 428px) {
  .cmn-contact--wrap {
    display: block;
  }
}

.cmn-contact_list {
  width: 886px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 428px) {
  .cmn-contact_list {
    width: 100%;
    display: block;
    margin-top: 40px;
  }
}
.cmn-contact_list--group {
  width: 427px;
}
@media (max-width: 428px) {
  .cmn-contact_list--group {
    width: 100%;
    margin-top: 24px;
  }
  .cmn-contact_list--group:first-of-type {
    margin-top: 0;
  }
}
.cmn-contact_list--term {
  background-color: #EBEDF4;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.08em;
}
@media (max-width: 428px) {
  .cmn-contact_list--term {
    height: 42px;
    font-size: 15px;
  }
}
.cmn-contact_list--desc {
  border: 1px solid #EBEDF4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 114px;
}
@media (max-width: 428px) {
  .cmn-contact_list--desc {
    height: auto;
  }
}
.cmn-contact_list--tel {
  color: #002174;
  font-size: 40px;
  font-family: "Roboto", serif;
  letter-spacing: 0.08em;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-left: 61px;
  line-height: 1.33;
}
@media (max-width: 428px) {
  .cmn-contact_list--tel {
    text-align: center;
    font-size: 36px;
    margin-top: 12px;
    padding-left: 10px;
    margin-left: 0;
  }
}
.cmn-contact_list--tel:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon/icon-tel.svg);
  background-size: contain;
  background-position: 50% 50%;
  width: 19px;
  height: 32px;
  margin-right: 8px;
}
@media (max-width: 428px) {
  .cmn-contact_list--tel:before {
    width: 18px;
    height: 30px;
  }
}
.cmn-contact_list--fax {
  font-family: "Roboto", serif;
  letter-spacing: 0.08em;
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 24px;
  line-height: 1.38;
  margin-left: 138px;
}
@media (max-width: 428px) {
  .cmn-contact_list--fax {
    margin-left: 0;
    text-align: center;
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 20px;
    padding-left: 80px;
  }
}
.cmn-contact_list--fax_slash {
  font-weight: 300;
}
.cmn-contact_list--contact {
  background-color: #002174;
  width: 347px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.08em;
  margin: auto;
}
@media (max-width: 428px) {
  .cmn-contact_list--contact {
    width: 276px;
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.cmn-contact_list--contact:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon/icon-mail.svg);
  background-size: contain;
  background-position: 50% 50%;
  width: 22px;
  height: 16px;
  margin-right: 8px;
  margin-top: 3px;
}
@media (max-width: 428px) {
  .cmn-contact_list--contact:before {
    width: 20px;
    height: 15px;
    margin-right: 6px;
    margin-top: 2px;
  }
}
.cmn-contact_list--contact:hover {
  background-color: #1F3C85;
}
@media (max-width: 428px) {
  .cmn-contact_list--contact:hover {
    background-color: #002174;
  }
}

.cmn-footer {
  background-color: #475F9B;
}
.cmn-footer--box {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 428px) {
  .cmn-footer--box {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.cmn-footer_logo {
  width: 308px;
  height: 72px;
  background-image: url(../img/logo-en-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media (max-width: 428px) {
  .cmn-footer_logo {
    width: 231px;
    height: 54px;
  }
}
@media (max-width: 428px) {
  .cmn-footer_logo--img {
    width: 148px;
  }
}

.cmn-footer_address {
  color: #fff;
  font-size: 15px;
  line-height: 1.63;
  margin-top: 11px;
  text-align: center;
}
@media (max-width: 428px) {
  .cmn-footer_address {
    margin-top: 8px;
    font-size: 14px;
  }
}

.cmn-footer_nav {
  margin-top: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 428px) {
  .cmn-footer_nav {
    display: none;
  }
}
.cmn-footer_nav--item {
  line-height: 16px;
  border-right: 1px solid #fff;
}
.cmn-footer_nav--item:last-of-type {
  border-right: none;
}
.cmn-footer_nav--link {
  color: #fff;
  font-size: 14px;
  display: block;
  padding-right: 40px;
  padding-left: 40px;
}
.cmn-footer_nav--link:hover {
  transform: translateY(-3px);
}

.cmn-footer_copy {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #002174;
}
@media (max-width: 428px) {
  .cmn-footer_copy {
    height: 36px;
  }
}
.cmn-footer_copy--txt {
  font-family: "Roboto", serif;
  letter-spacing: 0.08em;
  font-style: italic;
  font-style: normal;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 428px) {
  .cmn-footer_copy--txt {
    font-size: 11px;
  }
}

/*# sourceMappingURL=common.css.map */
