@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/*
@mixin mq-tab($width:768px) {
	@media (max-width: $width) {
		@content;
	}
}*/
body,
div,
section,
header,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
figure,
iframe,
img,
nav,
a {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

body {
  position: relative;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  width: 100%;
}

p {
  text-justify: inter-ideograph;
}

@media (max-width: 768px) {
  .pcEle {
    display: none;
  }
}

.spEle {
  display: none;
}
@media (max-width: 768px) {
  .spEle {
    display: block;
  }
}

.inner {
  margin: 0 auto;
}

/* navigation */
.menu-trigger,
.menu-trigger span {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  width: 144px;
  height: 144px;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(#06afaf), to(#0051b1));
  background: linear-gradient(#06afaf 0%, #0051b1 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.menu-trigger:hover {
  cursor: pointer;
}
.menu-trigger.scroll {
  position: fixed;
  background: none;
}
.menu-trigger.scroll div {
  background-color: #000;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}
@media (max-width: 768px) {
  .menu-trigger {
    background: none;
    width: 40px;
    height: 16px !important;
    top: 20px;
    right: 16px;
  }
}

.menu-trigger div {
  position: absolute;
  left: 40px;
  width: 64px;
  height: 4px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .menu-trigger div {
    width: 40px;
    height: 3px;
    left: 0;
    background-color: #000;
  }
}

.menu-trigger.active div {
  position: absolute;
}
.menu-trigger .bar1 {
  top: 58px;
}
@media (max-width: 768px) {
  .menu-trigger .bar1 {
    top: 0px;
  }
}

.menu-trigger .bar2 {
  top: 83px;
}
@media (max-width: 768px) {
  .menu-trigger .bar2 {
    top: 13px;
  }
}

.menu-trigger:hover .bar1 {
  -webkit-animation-name: hover-rotate;
          animation-name: hover-rotate;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.menu-trigger:hover .bar2 {
  -webkit-animation-name: hover-rotate;
          animation-name: hover-rotate;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes hover-rotate {
  0% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes hover-rotate {
  0% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.global-menu.active {
  display: block;
}

.global-menu {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  padding: 0 0 0 26%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1160px) {
  .global-menu {
    padding: 0 0 0 10%;
  }
}
@media (max-width: 768px) {
  .global-menu {
    padding: 0;
  }
}
.global-menu .bg {
  position: relative;
  background: #fff;
  padding: 96px 16%;
  height: 100%;
}
@media (max-width: 1160px) {
  .global-menu .bg {
    padding: 96px 8%;
  }
}
@media (max-width: 768px) {
  .global-menu .bg {
    padding: 52px 0 0 0;
  }
}
.global-menu .logo {
  max-width: 262px;
}
@media (max-width: 768px) {
  .global-menu .logo {
    display: none;
  }
}
.global-menu nav {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .global-menu nav {
    display: block;
    margin-top: 0px;
    border-top: 1px solid #cccccc;
  }
}
.global-menu nav p, .global-menu nav dl {
  width: 27%;
}
@media (max-width: 768px) {
  .global-menu nav p, .global-menu nav dl {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .global-menu nav dl dd {
    margin-top: 6px;
    margin-bottom: 0px;
  }
}
.global-menu nav p:nth-child(n+4),
.global-menu nav dl:nth-child(n+4) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .global-menu nav p:nth-child(n+4),
.global-menu nav dl:nth-child(n+4) {
    margin-top: 0;
  }
}
.global-menu nav p, .global-menu nav dt {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .global-menu nav p, .global-menu nav dt {
    margin-bottom: 0;
  }
}
.global-menu nav p a, .global-menu nav dt a {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .global-menu nav p a, .global-menu nav dt a {
    font-size: 16px;
    padding-left: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.global-menu nav p a::before, .global-menu nav dt a::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.global-menu nav p a:hover::before, .global-menu nav dt a:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.global-menu nav p span, .global-menu nav dt span {
  position: relative;
  display: block;
}
.global-menu nav p span::after, .global-menu nav p span::before, .global-menu nav dt span::after, .global-menu nav dt span::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
  width: 16px;
  height: 16px;
  z-index: 10;
  overflow: hidden;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .global-menu nav p span::after, .global-menu nav p span::before, .global-menu nav dt span::after, .global-menu nav dt span::before {
    top: 12px;
    right: 16px;
  }
}
.global-menu nav p span::before, .global-menu nav dt span::before {
  z-index: 12;
  background: url(../top/arw.svg) top right no-repeat;
}
.global-menu nav p span::after, .global-menu nav dt span::after {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 14;
  background: url(../top/arw-black.svg) top right no-repeat;
}
.global-menu nav p span:hover::after, .global-menu nav dt span:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.global-menu nav li a {
  line-height: 2.2;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.global-menu nav li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.global-menu nav li a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (max-width: 768px) {
  .global-menu nav li a {
    font-size: 12px;
    line-height: 2;
    padding-left: 16px;
  }
}
.global-menu nav a {
  color: #000;
  display: block;
}
.global-menu .btn-close {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 20px;
  right: 16px;
}
@media (max-width: 768px) {
  .global-menu .btn-close {
    top: 13px;
    right: 6px;
  }
}
.global-menu .btn-close div {
  height: 1px;
  width: 42px;
  background: #000;
}
.global-menu .btn-close .bar1 {
  -webkit-transform: translateY(13px) translateX(0px) rotate(-315deg);
          transform: translateY(13px) translateX(0px) rotate(-315deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-menu .btn-close .bar2 {
  -webkit-transform: translateY(12px) translateX(0) rotate(315deg);
          transform: translateY(12px) translateX(0) rotate(315deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-menu .btn-close:hover {
  cursor: pointer;
}
.global-menu .btn-close:hover .bar1 {
  -webkit-transform: translateY(13px) translateX(0px) rotate(45deg);
          transform: translateY(13px) translateX(0px) rotate(45deg);
}
.global-menu .btn-close:hover .bar2 {
  -webkit-transform: translateY(12px) translateX(0) rotate(675deg);
          transform: translateY(12px) translateX(0) rotate(675deg);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 200px 20px 48px;
  height: 144px;
}
@media (max-width: 1160px) {
  .header {
    padding: 20px 160px 20px 16px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0px 12px 16px;
    height: 56px;
  }
}
.header .head-title {
  max-width: 262px;
}
@media (max-width: 1000px) {
  .header .head-title {
    max-width: 160px;
    padding-top: inherit;
  }
}
@media (max-width: 768px) {
  .header .head-title {
    max-width: 93px;
    padding-top: 0;
  }
}
.header .head-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 28px;
}
@media (max-width: 768px) {
  .header .head-navi {
    display: none;
  }
}
.header .head-navi a {
  color: #000;
  position: relative;
  display: inline-block;
}
.header .head-navi a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .head-navi a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header .head-navi li {
  margin-left: 40px;
}
@media (max-width: 1160px) {
  .header .head-navi li {
    margin-left: 16px;
  }
}
.header .head-navi li:first-child {
  margin-left: 8px;
}
.header .head-navi li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .header .head-navi li a {
    font-size: 12px;
  }
}
.header .head-navi li a span {
  margin-top: 4px;
  display: block;
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 1000px) {
  .header .head-navi li a span {
    font-size: 10px;
  }
}

.contents-head {
  min-height: 672px;
  background-image: url(../top/main-image.jpg);
  background-size: cover;
  padding: 64px;
}
@media (max-width: 768px) {
  .contents-head {
    background-image: none;
    padding: 0;
    min-height: inherit;
  }
}
.contents-head .read {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .contents-head .read {
    font-size: 15px;
  }
}
.contents-head .catch {
  margin-top: 16px;
  max-width: 518px;
}
@media (max-width: 768px) {
  .contents-head .catch {
    margin-top: 8px;
    max-width: 262px;
  }
}
.contents-head .company {
  margin-top: 16px;
  font-size: 20px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 400;
}
@media (max-width: 768px) {
  .contents-head .company {
    margin-top: 8px;
    font-size: 12px;
  }
}

article {
  padding-left: 0;
}

.catch-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 128px 0 108px;
}
@media (max-width: 1160px) {
  .catch-area {
    padding: 16px 16px 80px 16px;
  }
}
@media (max-width: 768px) {
  .catch-area {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 16px 80px;
  }
}
.catch-area div {
  max-width: 420px;
  padding-top: 84px;
}
.catch-area div .catch1 {
  font-size: 23px;
  line-height: 2;
}
@media (max-width: 768px) {
  .catch-area div .catch1 {
    font-size: 18px;
  }
}
.catch-area div .catch2 {
  margin-top: 8px;
  max-width: 325px;
}
@media (max-width: 768px) {
  .catch-area div .catch2 {
    max-width: 243px;
  }
}
.catch-area div .catch3 {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .catch-area div .catch3 {
    font-size: 14px;
    line-height: 2;
  }
}
.catch-area figure {
  max-width: 664px;
}
@media (max-width: 1160px) {
  .catch-area figure {
    padding-top: 60px;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .catch-area figure {
    display: none;
  }
}

.top-menu .category-title {
  max-width: 1034px;
  margin: 0 auto;
}
.top-menu .category-title b {
  font-size: 56px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top-menu .category-title b {
    padding: 0 16px;
    font-size: 28px;
  }
}
.top-menu .category-title strong {
  font-size: 16px;
  display: inline-block;
  margin-left: 28px;
}
@media (max-width: 768px) {
  .top-menu .category-title strong {
    font-size: 14px;
    margin-left: 16px;
  }
}
.top-menu .contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 64px auto;
  border-top: 1px solid #707070;
}
@media (max-width: 768px) {
  .top-menu .contents-list {
    display: block;
    margin: 12px auto;
    border: none;
  }
}
.top-menu .contents-list li {
  width: 50%;
  border-bottom: 1px solid #707070;
}
@media (max-width: 768px) {
  .top-menu .contents-list li {
    width: 100%;
    border-bottom: 4px solid #fff;
  }
}
.top-menu .contents-list li:nth-child(2n) {
  border-left: 1px solid #707070;
}
.top-menu .contents-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 7%;
  min-height: 360px;
  position: relative;
}
@media (max-width: 768px) {
  .top-menu .contents-list li a {
    min-height: 168px;
  }
}
.top-menu .contents-list li a b {
  font-size: 56px;
  color: #1F499A;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top-menu .contents-list li a b {
    color: #fff;
    font-size: 31px;
  }
}
.top-menu .contents-list li a strong {
  font-size: 18px;
  display: block;
  color: #000;
  margin-top: 24px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top-menu .contents-list li a strong {
    margin-top: 6px;
    font-size: 14px;
    color: #fff;
  }
}
.top-menu .contents-list li a figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.top-menu .contents-list li a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top-menu .contents-list li a figure img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.top-menu .contents-list li a:hover b {
  color: #fff;
}
.top-menu .contents-list li a:hover strong {
  color: #fff;
}
.top-menu .contents-list li a:hover figure img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banners .inner {
  max-width: 960px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .banners .inner {
    padding-bottom: 58px;
  }
}
.banners .inner .sdgs {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.banners .inner .sdgs a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banners .inner .sdgs a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .banners .inner .sdgs {
    margin: 62px 16px 64px;
  }
}
.banners .inner .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .banners .inner .list {
    display: block;
  }
}
.banners .inner .list li {
  width: 47.5%;
  position: relative;
}
@media (max-width: 768px) {
  .banners .inner .list li {
    width: 100%;
  }
  .banners .inner .list li:first-child {
    margin-bottom: 24px;
  }
}
.banners .inner .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 248px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banners .inner .list li a b {
  z-index: 10;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
  font-size: 56px;
  text-align: center;
  color: #f7f7f8;
}
@media (max-width: 768px) {
  .banners .inner .list li a b {
    font-size: 45px;
  }
}
.banners .inner .list li a strong {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  padding-top: 30px;
  padding-right: 8px;
  right: 0;
  bottom: 0;
  font-size: 16px;
  width: 141px;
  height: 64px;
  color: #fff;
  line-height: 2;
  text-align: right;
  background: url(../top/triangle.svg) right bottom no-repeat;
}
.banners .inner .list li a figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.banners .inner .list li a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banners .inner .list li a:hover figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.7;
}
.banners .inner .list .bnr-recruit b img {
  max-width: 234px;
}

.btm-contact {
  background: url(../top/contact-bg.png) bottom center repeat-x #0248A0;
  background-size: auto 57px;
}
@media (max-width: 768px) {
  .btm-contact {
    background-image: none;
  }
}
.btm-contact .inner {
  max-width: 1034px;
  padding: 100px 0 112px;
}
@media (max-width: 768px) {
  .btm-contact .inner {
    padding: 60px 16px;
  }
}
.btm-contact .category-title {
  max-width: 1034px;
  margin: 0 auto;
  color: #fff;
}
.btm-contact .category-title b {
  font-size: 56px;
  line-height: 1;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .btm-contact .category-title b {
    font-size: 28px;
  }
}
.btm-contact .category-title strong {
  font-size: 16px;
  display: inline-block;
  margin-left: 28px;
}
@media (max-width: 768px) {
  .btm-contact .category-title strong {
    font-size: 14px;
    margin-left: 24px;
  }
}
.btm-contact .list {
  max-width: 960px;
  margin: 48px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .btm-contact .list {
    margin-top: 20px;
    display: block;
  }
}
.btm-contact .list li {
  width: 50%;
  color: #fff;
}
@media (max-width: 1000px) {
  .btm-contact .list li {
    width: inherit;
  }
}
@media (max-width: 768px) {
  .btm-contact .list li {
    width: 100%;
  }
}
.btm-contact .list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .btm-contact .list li dl {
    display: block;
  }
}
.btm-contact .list li dl dt {
  display: table-cell;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
  font-size: 40px;
  border-right: 1px solid #fff;
  padding-right: 24px;
  margin-left: 48px;
  line-height: 80px;
}
@media (max-width: 1000px) {
  .btm-contact .list li dl dt {
    margin-left: 16px;
  }
}
@media (max-width: 768px) {
  .btm-contact .list li dl dt {
    border-right: none;
    font-size: 28px;
    line-height: 56px;
    padding-left: 18px;
  }
}
.btm-contact .list li.tel dt {
  margin-right: 24px;
}
.btm-contact .list li.tel dd {
  padding-top: 6px;
}
@media (max-width: 768px) {
  .btm-contact .list li.tel dd {
    padding-top: 0;
    text-align: center;
  }
}
.btm-contact .list li.tel strong {
  display: block;
  margin-bottom: 6px;
}
.btm-contact .list li.tel strong a {
  font-size: 40px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .btm-contact .list li.tel strong a {
    font-size: 36px;
  }
}
.btm-contact .list li.tel span {
  font-size: 17px;
}
@media (max-width: 768px) {
  .btm-contact .list li.tel span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .btm-contact .list li.mail {
    margin-top: 28px;
  }
}
.btm-contact .list li.mail dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btm-contact .list li.mail dd a {
  display: block;
  width: 304px;
  height: 64px;
  line-height: 64px;
  border-radius: 4px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btm-contact .list li.mail dd a:hover {
  opacity: 0.7;
}
.btm-contact .list li.mail dd a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 31.1px;
  background: url(../top/airplane.svg) top center no-repeat;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  margin-right: 8px;
}

#footer {
  background: #F2F3F9;
  margin-top: 120px;
}
@media (max-width: 768px) {
  #footer {
    margin-top: 32px;
  }
}

.btm-menu {
  max-width: 1034px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 76px 0 60px;
}
@media (max-width: 1000px) {
  .btm-menu {
    padding: 76px 16px 60px;
  }
}
@media (max-width: 768px) {
  .btm-menu {
    display: block;
    padding: 30px 0 30px;
  }
}
.btm-menu .left {
  max-width: 300px;
}
@media (max-width: 768px) {
  .btm-menu .left {
    max-width: 100%;
  }
}
.btm-menu .left .logo {
  max-width: 200px;
}
@media (max-width: 768px) {
  .btm-menu .left .logo {
    margin: 0 auto;
  }
}
.btm-menu .left .address {
  line-height: 2;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .btm-menu .left .address {
    display: none;
  }
}
.btm-menu .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5%;
}
@media (max-width: 1000px) {
  .btm-menu .right {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .btm-menu .right {
    display: none;
  }
}
.btm-menu .right .menu-company {
  width: 37%;
}
.btm-menu .right .menu-bussiness {
  width: 40%;
}
.btm-menu .right .menu-recruit {
  width: 18%;
}
.btm-menu .right dt b {
  display: block;
  font-family: azo-sans-web, sans-serif;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 4px;
  color: #0748A0;
}
.btm-menu .right dt strong {
  color: #666666;
  font-weight: 400;
}
.btm-menu .right .list {
  margin-top: 32px;
}
.btm-menu .right .list li {
  margin-bottom: 8px;
}
.btm-menu .right .list a {
  color: #000;
  line-height: 1.5;
}
.btm-menu .right .list a:hover {
  text-decoration: underline;
}

.global-footer {
  padding-bottom: 76px;
}
@media (max-width: 1000px) {
  .global-footer {
    padding: 16px 16px 60px 16px;
  }
}
@media (max-width: 768px) {
  .global-footer {
    padding-bottom: 16px;
  }
}
.global-footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1034px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .global-footer .inner {
    display: block;
  }
}
.global-footer .copyright {
  width: 50%;
  color: #000;
}
@media (max-width: 768px) {
  .global-footer .copyright {
    margin-top: 32px;
    width: 100%;
    text-align: center;
  }
}
.global-footer .foot-navi {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .global-footer .foot-navi {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.global-footer .foot-navi li:last-child {
  margin-left: 40px;
}
.global-footer .foot-navi a {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .global-footer .foot-navi a {
    color: #666666;
    text-decoration: none;
  }
}
.global-footer .foot-navi a:hover {
  opacity: 0.7;
  text-decoration: none;
}