/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  /* Apply border-box across the entire page. */
  box-sizing: border-box;
  font-family: var(--global--font-secondary);
  line-height: var(--global--line-height-body);
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-size: var(--global--font-size-base);
  font-weight: normal;
  color: var(--global--color-primary);
  text-align: left;
  background-color: var(--global--color-background);
}

button {
  cursor: pointer;
}/*# sourceMappingURL=reset.css.map */
@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* breakpoint
--------------------------------------------------*/
/* BASE STYLE
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

ul {
  list-style-type: none;
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.inner {
  max-width: 960px;
  width: 95%;
  margin: auto;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  justify-content: space-between;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.sp-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .pc-none {
    display: none;
  }
  .inner {
    max-width: 560px;
    width: 82.667%;
    margin: auto;
  }
  .youtube {
    width: 100%;
    height: 280px;
  }
}
.js-fadeIn {
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(20px);
}
.js-fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.js-anime {
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(20px);
}
.js-anime.active {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: fixed;
  width: 98%;
  max-width: 1400px;
  height: 120px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.l-header .l-header-inner {
  height: 100%;
  border-radius: 32px;
  padding: 35px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
}
.l-header .l-header-logo {
  width: 330px;
  margin-right: 120px;
}
.l-header .l-header-logo__ttl .-link {
  display: block;
}
.l-header .l-header-area {
  height: 100%;
}
.l-header .l-header-area__list {
  align-items: center;
}
.l-header .l-header-area__list-item {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.l-header .l-header-area__list-item:last-child {
  margin-right: 0;
}
.l-header .l-header-area__list-item .-link {
  color: #000;
  font-size: 14px;
}
.l-header .l-header-area__btn {
  display: flex;
  margin-left: auto;
  gap: 0 16px;
}
.l-header .l-header-area__btn .-btn {
  border-radius: 40px;
  text-align: center;
}
.l-header .l-header-area__btn .-btn.-bg01 {
  background-color: #008ED8;
}
.l-header .l-header-area__btn .-btn.-bg02 {
  background-color: #DC000C;
}
.l-header .l-header-area__btn .-btn a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 20px;
}
.l-header .l-header-area__btn .-btn a span {
  position: relative;
  padding-left: 15px;
}
.l-header .l-header-area__btn .-btn a span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 55%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 1420px) {
  .l-header {
    height: 100px;
  }
  .l-header .l-header-inner {
    padding: 20px 15px;
  }
  .l-header .l-header-logo {
    width: 250px;
    margin-right: 60px;
  }
  .l-header .l-header-area__list {
    margin-right: 20px;
  }
  .l-header .l-header-area__list-item {
    margin-right: 16px;
  }
  .l-header .l-header-area__btn {
    margin-left: auto;
  }
}
@media screen and (max-width: 1180px) {
  .l-header .l-header-logo {
    width: 180px;
    margin-right: 20px;
  }
  .l-header .l-header-area__list {
    margin-right: 20px;
  }
  .l-header .l-header-area__list-item {
    margin-right: 16px;
  }
  .l-header .l-header-area__list-item .-link {
    font-size: 12px;
  }
  .l-header .l-header-area__btn {
    flex-wrap: wrap;
    gap: 5px 0;
    width: 160px;
  }
  .l-header .l-header-area__btn .-btn {
    width: 100%;
  }
  .l-header .l-header-area__btn .-btn a {
    font-size: 12px;
    padding: 2px 10px;
  }
}
@media screen and (max-width: 850px) {
  .l-header {
    height: 80px;
  }
  .l-header .l-header-inner {
    padding: 10px 5px;
  }
  .l-header .l-header-area__btn {
    width: 130px;
  }
  .l-header .l-header-area__btn .-btn a {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    top: 0px;
    height: 70px;
  }
  .l-header .l-header-inner {
    border-radius: 0px;
    padding: 8px 10px;
  }
  .l-header .l-header-logo {
    width: 200px;
    margin-right: 5px;
  }
  .l-header .l-header-area__btn .-btn a span::before {
    width: 6px;
    height: 6px;
  }
  .l-header .l-header-area {
    background-color: rgba(0, 83, 128, 0.9);
    position: fixed;
    height: calc(100vh - 70px);
    top: 70px;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 90%;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .l-header .l-header-area.open {
    transform: translateX(0%);
    opacity: 1;
    z-index: 10000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    gap: 0px 0;
    width: 100%;
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
    flex-wrap: wrap;
  }
  .l-header .l-header-area__list-item .-link {
    color: #fff;
    font-size: 15px;
    width: 100%;
    padding-left: 15px;
    position: relative;
  }
  .l-header .l-header-area__list-item .-link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header .l-header-area__list-item .-link-in {
    width: 100%;
    padding-left: 15px;
  }
  .l-header .l-header-area__list-item .-link-in a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }
  .l-header .l-header-area__list-item .-link-add {
    margin-top: 50px;
  }
  .l-header .l-header-area__list-item .-link-add a {
    color: #fff;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
    font-weight: 500;
  }
  .l-header .l-header-area__list-item .-link-add a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 80px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #00324D;
    border-radius: 50%;
    z-index: 10000;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 35%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    opacity: 0;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(3) {
    transform: translateY(0px) rotate(-45deg);
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 35%;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    transform: translateY(-4px);
  }
  .l-header .l-header-humbtn__line:nth-child(3) {
    transform: translateY(4px);
  }
}

/*------------------------------------------------

l-footer

-------------------------------------------------*/
/*------------------------------------------------

l-footer-top

-------------------------------------------------*/
.l-footer-top {
  padding: 60px 0 70px;
  background-color: #F5F5F5;
}
.l-footer-top .l-footer-top__area .-item {
  width: calc(50% - 20px);
  height: 110px;
  background-color: #fff;
  margin: 0 auto;
}
.l-footer-top .l-footer-top__area .-link {
  color: #000;
  font-size: 16px;
}
.l-footer-top .l-footer-top__area .-left {
  position: relative;
  width: 270px;
  padding: 20px 25px;
}
.l-footer-top .l-footer-top__area .-left h3 {
  font-weight: bold;
  font-size: 99%;
  line-height: 1.4;
}
.l-footer-top .l-footer-top__area .-left .-arrow {
  position: absolute;
  padding-right: 45px;
  display: inline-block;
  bottom: 10px;
  right: 15px;
}
.l-footer-top .l-footer-top__area .-left .-arrow::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/arrow.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-footer-top .l-footer-top__area .-left .-arrow span {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
}
.l-footer-top .l-footer-top__area .-imgbox {
  width: calc(100% - 270px);
}
.l-footer-top .l-footer-top__area .-imgbox .-img {
  height: 110px;
  overflow: hidden;
  position: relative;
}
.l-footer-top .l-footer-top__area .-imgbox .-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.l-footer-top .l-footer-top__area .-imgbox .-img::before {
  content: "";
  display: block;
  padding-top: 58%;
}
@media screen and (max-width: 768px) {
  .l-footer-top {
    padding: 40px 0 40px;
  }
  .l-footer-top .l-footer-top__area {
    max-width: 310px;
    margin: auto;
  }
  .l-footer-top .l-footer-top__area .-item {
    width: 100%;
    height: 65px;
    margin-top: 10px;
  }
  .l-footer-top .l-footer-top__area .-item:first-child {
    margin-top: 0;
  }
  .l-footer-top .l-footer-top__area .-link {
    font-size: 13px;
    height: 65px;
  }
  .l-footer-top .l-footer-top__area .-left {
    width: 195px;
    padding: 10px 10px;
    height: 100%;
  }
  .l-footer-top .l-footer-top__area .-left .-arrow {
    position: absolute;
    padding-right: 45px;
    display: inline-block;
    bottom: 50%;
    transform: translateY(50%);
    right: 15px;
  }
  .l-footer-top .l-footer-top__area .-left .-arrow::after {
    width: 24px;
    height: 24px;
  }
  .l-footer-top .l-footer-top__area .-left .-arrow span {
    display: none;
  }
  .l-footer-top .l-footer-top__area .-imgbox {
    height: 100%;
    width: calc(100% - 195px);
  }
  .l-footer-top .l-footer-top__area .-imgbox .-img {
    height: 65px;
  }
}

/*------------------------------------------------

l-footer-mid

-------------------------------------------------*/
.l-footer-mid .l-footer-mid__item {
  position: relative;
  width: 50%;
  height: 350px;
}
.l-footer-mid .l-footer-mid__item.bg01 {
  background: url(../img/top/top-about07.jpg) no-repeat center center/cover;
}
.l-footer-mid .l-footer-mid__item.bg02 {
  background: url(../img/top/top-about08.jpg) no-repeat center center/cover;
}
.l-footer-mid .l-footer-mid__item-bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.l-footer-mid .l-footer-mid__btn {
  width: 270px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-footer-mid .l-footer-mid__btn .-link {
  position: relative;
  background-color: #fff;
  border-radius: 36px;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 13px 35px;
  text-align: center;
}
.l-footer-mid .l-footer-mid__btn .-link::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/arrow.png) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.l-footer-mid .l-footer-mid__btn .-arrow {
  color: #000;
}
@media screen and (max-width: 768px) {
  .l-footer-mid .l-footer-mid__item {
    width: 100%;
    height: 165px;
  }
  .l-footer-mid .l-footer-mid__btn {
    width: 210px;
  }
  .l-footer-mid .l-footer-mid__btn .-link {
    padding: 13px 20px;
    text-align: left;
  }
  .l-footer-mid .l-footer-mid__btn .-link.--linkpl {
    padding-left: 50px;
  }
}

/*------------------------------------------------

l-footer-btm

-------------------------------------------------*/
.l-footer-btm {
  background-color: #008ED8;
  padding: 50px 0;
}
.l-footer-btm .l-footer-btm__inner {
  max-width: 1400px;
}
.l-footer-btm .l-footer-btm__left .-logo {
  width: 340px;
}
.l-footer-btm .l-footer-btm__left .-address {
  margin-top: 30px;
  color: #fff;
  font-size: 13px;
}
.l-footer-btm .l-footer-btm__left .-gruop {
  margin-top: 5px;
  display: flex;
  color: #fff;
  align-items: center;
}
.l-footer-btm .l-footer-btm__left .-tel {
  margin-right: 10px;
  line-height: 1;
  font-size: 13px;
}
.l-footer-btm .l-footer-btm__left .-tel a {
  color: #fff;
  line-height: 1;
  font-size: 13px;
  pointer-events: none;
}
.l-footer-btm .l-footer-btm__left .-fax {
  font-size: 13px;
  line-height: 1;
}
.l-footer-btm .l-footer-btm__right .-item {
  margin-right: 90px;
}
.l-footer-btm .l-footer-btm__right .-item:last-child {
  margin-right: 0;
}
.l-footer-btm .l-footer-btm__right .-list a {
  position: relative;
  color: #fff;
  padding-left: 15px;
  font-size: 15px;
  font-weight: bold;
}
.l-footer-btm .l-footer-btm__right .-list a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 55%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.l-footer-btm .l-footer-btm__right ul li a {
  position: relative;
  color: #fff;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
}
.l-footer-btm .l-footer-btm__right ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  width: 5px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .l-footer-btm .l-footer-btm__left {
    width: 100%;
  }
  .l-footer-btm .l-footer-btm__right {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-btm {
    padding: 35px 0;
  }
  .l-footer-btm .l-footer-btm__inner {
    max-width: 560px;
  }
  .l-footer-btm .l-footer-btm__left {
    width: 100%;
  }
  .l-footer-btm .l-footer-btm__left .-logo {
    width: 300px;
  }
  .l-footer-btm .l-footer-btm__left .-address {
    margin-top: 15px;
    font-size: 12px;
  }
  .l-footer-btm .l-footer-btm__left .-tel {
    font-size: 12px;
  }
  .l-footer-btm .l-footer-btm__left .-tel a {
    font-size: 12px;
    pointer-events: auto;
  }
  .l-footer-btm .l-footer-btm__left .-fax {
    font-size: 12px;
  }
  .l-footer-btm .l-footer-btm__right {
    width: 100%;
    margin-top: 30px;
  }
  .l-footer-btm .l-footer-btm__right .-item {
    margin-right: 0px;
    width: 100%;
  }
  .l-footer-btm .l-footer-btm__right .-list {
    line-height: 1.8;
  }
  .l-footer-btm .l-footer-btm__right ul {
    margin: 10px 0;
  }
}

/*------------------------------------------------

l-footer-btm02

-------------------------------------------------*/
.l-footer-btm02 {
  background-color: #4D4D4D;
  padding: 30px 0;
  color: #fff;
  font-size: 12px;
}
.l-footer-btm02 a {
  color: #fff;
}
.l-footer-btm02__inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer-btm02__inner {
    max-width: 85%;
  }
}
.l-footer-btm02__inner__heading {
  margin-left: -0.5em;
  font-weight: bold;
  margin-bottom: 1em;
}
.l-footer-btm02__inner__dl {
  display: table;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .l-footer-btm02__inner__dl {
    display: block;
    margin-bottom: 2em;
  }
}
.l-footer-btm02__inner__dl dt {
  display: table-cell;
  padding-right: 0.5em;
}
.l-footer-btm02__inner__dl dt::after {
  content: "　|";
}
@media screen and (max-width: 768px) {
  .l-footer-btm02__inner__dl dt {
    display: block;
    margin-bottom: 0.5em;
  }
  .l-footer-btm02__inner__dl dt::after {
    content: "";
  }
}
.l-footer-btm02__inner__dl dd {
  display: table-cell;
}
@media screen and (max-width: 768px) {
  .l-footer-btm02__inner__dl {
    display: block;
  }
}

/*------------------------------------------------

l-footer-under

-------------------------------------------------*/
.l-footer-under {
  background-color: #BEE3F7;
  padding: 15px 0;
}
.l-footer-under .l-footer-under__inner {
  max-width: 1400px;
  align-items: center;
}
.l-footer-under .l-footer-under__block {
  display: flex;
  gap: 0 20px;
}
.l-footer-under .l-footer-under__block .-txt {
  font-size: 14px;
}
.l-footer-under .l-footer-under__block .-txt a {
  position: relative;
  padding-left: 15px;
  color: #000;
}
.l-footer-under .l-footer-under__block .-txt a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 55%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
.l-footer-under .-copy {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .l-footer-under {
    padding: 20px 0 10px;
  }
  .l-footer-under .l-footer-under__inner {
    max-width: 560px;
    width: 95%;
  }
  .l-footer-under .l-footer-under__block {
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 0 60px;
  }
  .l-footer-under .l-footer-under__block .-txt {
    font-size: 14px;
  }
  .l-footer-under .-copy {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    font-size: 10px;
  }
}

/*------------------------------------------------

c-content-main

-------------------------------------------------*/
.c-content-main {
  background-color: #F5F5F5;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-content-main {
    padding-top: 30px;
  }
}

/*------------------------------------------------

c-breadcrumbs-area

-------------------------------------------------*/
.c-breadcrumbs-area {
  padding: 20px 0 50px;
}
.c-breadcrumbs-area .c-breadcrumbs-area--inner {
  max-width: 1240px;
}
.c-breadcrumbs-area ul {
  gap: 5px 20px;
}
.c-breadcrumbs-area ul li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.c-breadcrumbs-area ul li:last-child::after {
  display: none;
}
.c-breadcrumbs-area ul li::after {
  content: "";
  display: block;
  position: absolute;
  right: -12px;
  top: 47%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #008ED8;
  border-right: 2px solid #008ED8;
  transform: translateY(-50%) rotate(45deg);
}
.c-breadcrumbs-area ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs-area {
    display: none;
  }
}

/*------------------------------------------------

c-submv

-------------------------------------------------*/
.c-submv {
  position: relative;
  height: 360px;
}
.c-submv.-news {
  background: url(../img/news/news-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-hijet {
  background: url(../img/hijet/hijet-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-hi-jet-aac {
  background: url(../img/hi-jet-aac/hi-jet-aac-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-hi-jet-arc {
  background: url(../img/hi-jet-arc/hi-jet-arc-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-policy {
  background-color: #f5f5f5;
}
.c-submv.-policy .c-submv__ttl {
  color: #008ED8;
  text-shadow: none;
}
.c-submv.-achievements {
  background: url(../img/achievements/achievements-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-about {
  background: url(../img/about/about-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-inquiry {
  background: url(../img/inquiry/inquiry-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv.-glossary {
  background: url(../img/glossary/glossary-bg-pc.jpg) no-repeat center center/cover;
}
.c-submv .c-submv__ttl {
  position: absolute;
  width: 100%;
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px #000;
  transform: translateX(-50%);
  left: 50%;
  bottom: 90px;
}
@media screen and (max-width: 768px) {
  .c-submv {
    height: 210px;
  }
  .c-submv.-news {
    background: url(../img/news/news-bg-sp.jpg) no-repeat center center/cover;
  }
  .c-submv.-hijet {
    background: url(../img/hijet/hijet-bg-sp.jpg) no-repeat center center/cover;
  }
  .c-submv.-hi-jet-aac {
    background: url(../img/hi-jet-aac/hi-jet-aac-bg-sp.jpg) no-repeat center center/cover;
  }
  .c-submv.-hi-jet-arc {
    background: url(../img/hi-jet-arc/hi-jet-arc-bg-sp.jpg) no-repeat center center/cover;
  }
  .c-submv .c-submv__ttl {
    font-size: 20px;
    bottom: 60px;
  }
}

/*------------------------------------------------

c-btn01

-------------------------------------------------*/
.c-btn01 .-link {
  background-color: #fff;
  border-radius: 36px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 13px 35px;
}
.c-btn01 .-arrow {
  position: relative;
  color: #000;
  padding-right: 45px;
}
.c-btn01 .-arrow::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/arrow.png) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-btn01 .-link {
    padding: 13px 27px;
  }
}

/*------------------------------------------------

c-ttl01

-------------------------------------------------*/
.c-ttl01 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
}
.c-ttl01 span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  color: #656565;
}
@media screen and (max-width: 768px) {
  .c-ttl01 {
    font-size: 28px;
  }
  .c-ttl01 span {
    font-size: 15px;
  }
}

/*------------------------------------------------

c-ttl02

-------------------------------------------------*/
.c-ttl02 {
  background-color: #008ED8;
  padding: 25px 32px;
  border-radius: 16px;
}
.c-ttl02 .c-ttl02__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-ttl02 {
    padding: 15px 20px;
  }
  .c-ttl02 .c-ttl02__ttl {
    font-size: 16px;
  }
}

.c-ttl02--l {
  background-color: #008ED8;
  padding: 25px 32px;
}
.c-ttl02--l .c-ttl02__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-ttl02--l {
    padding: 15px 20px;
  }
  .c-ttl02--l .c-ttl02__ttl {
    font-size: 16px;
  }
}

.c-ttl02--s {
  background-color: #008ED8;
  padding: 15px 22px;
  margin-bottom: 30px;
}
.c-ttl02--s .c-ttl02__ttl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-ttl02--s {
    padding: 15px 20px;
  }
  .c-ttl02--s .c-ttl02__ttl {
    font-size: 16px;
  }
}

/*------------------------------------------------

p-btn01

-------------------------------------------------*/
.p-btn01 {
  margin-top: 80px;
  text-align: center;
}
.p-btn01 .c-btn01 .-link {
  background-color: #fff;
  border-radius: 36px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 13px 35px;
}

/*------------------------------------------------

p-pagenation

-------------------------------------------------*/
.p-pagination {
  padding-top: 50px;
  text-align: center;
}
.p-pagination .page-numbers {
  width: 40px;
  height: 40px;
  padding-top: 5px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 3px;
}
.p-pagination .current {
  background-color: #0099DD;
  color: #fff;
}
.p-pagination .next,
.p-pagination .prev {
  width: 60px;
  height: 30px;
  border-radius: 0%;
  background-color: #F5F5F5;
  margin-bottom: 10px;
}

/*------------------------------------------------

p-btn-submit

-------------------------------------------------*/
.p-btn-submit {
  display: inline-block;
  position: relative;
  width: 189px;
  border-radius: 36px;
  cursor: pointer;
  background: #006CA6;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 17px 15px 17px 0;
  cursor: pointer;
  z-index: 0;
  border: none;
}
.p-btn-submit::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/common/arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 16px);
  right: 12px;
  z-index: 2;
}/*# sourceMappingURL=common.css.map */
/*------------------------------------------------

p-newa-detail

-------------------------------------------------*/
.p-newa-detail .p-newa-detail__inner {
  max-width: 1240px;
}
.p-newa-detail .p-newa-detail__ttl {
  background-color: #008ED8;
  border-radius: 16px;
  padding: 30px;
  color: #fff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px dotted #fff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-day {
  margin-right: 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat {
  display: inline-block;
  font-size: 12px;
  border-radius: 16px;
  width: 130px;
  text-align: center;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--information {
  background-color: #66A8CC;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--event {
  background-color: #61C2AE;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--technology {
  background-color: #66A8CC;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--advertising {
  background-color: #0099DD;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--safety {
  background-color: #6CC9B7;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .p-newa-detail__ttl-info .-cat.-cat--other {
  background-color: #61C2AE;
  color: #ffffff;
}
.p-newa-detail .p-newa-detail__ttl .-ttl {
  padding-top: 16px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
.p-newa-detail .p-newa-detail__cont {
  margin-top: 40px;
  border-radius: 16px;
  background-color: #fff;
  padding: 40px 40px 80px 40px;
}
.p-newa-detail .p-newa-detail__cont > * {
  margin-top: 25px;
}
.p-newa-detail .p-newa-detail__cont > *:first-child {
  margin-top: 0;
}
.p-newa-detail .p-newa-detail__cont img {
  width: 100%;
}
.p-newa-detail .p-newa-detail__cont a {
  color: #008ED8;
}
.p-newa-detail .p-newa-detail__cont strong,
.p-newa-detail .p-newa-detail__cont b {
  position: relative;
  display: inline;
  color: #008ED8;
}
.p-newa-detail .p-newa-detail__cont strong::before,
.p-newa-detail .p-newa-detail__cont b::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15em;
  height: 0.6em;
  background: #FFE5CB;
  z-index: -1;
}
.p-newa-detail .p-newa-detail__cont ul:not(.toc_list),
.p-newa-detail .p-newa-detail__cont ol {
  list-style: none;
}
.p-newa-detail .p-newa-detail__cont ul:not(.toc_list) li,
.p-newa-detail .p-newa-detail__cont ol li {
  position: relative;
}
.p-newa-detail .p-newa-detail__cont ul:not(.toc_list) {
  padding-left: calc(0.7em + 6px);
  text-indent: calc((0.7em + 6px) * -1);
}
.p-newa-detail .p-newa-detail__cont ul:not(.toc_list) li::before {
  content: "";
  margin-right: 0.7em;
  box-sizing: border-box;
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 2px solid #008ED8;
  border-radius: 50%;
}
.p-newa-detail .p-newa-detail__cont .toc_list ul {
  padding-left: 0;
  text-indent: 0;
}
.p-newa-detail .p-newa-detail__cont .toc_list ul li::before {
  content: none;
}
.p-newa-detail .p-newa-detail__cont ol {
  counter-reset: item;
}
.p-newa-detail .p-newa-detail__cont ol li {
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.p-newa-detail .p-newa-detail__cont ol li::before {
  counter-increment: item;
  content: counter(item) ". ";
  color: #008ED8;
  font-family: new-order, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
}
.p-newa-detail .p-newa-detail__cont blockquote {
  padding: 15px;
  line-height: 1.6;
  background: #F8F7F5;
}
.p-newa-detail .p-newa-detail__cont-iframe {
  position: relative;
  aspect-ratio: 16/9;
}
.p-newa-detail .p-newa-detail__cont-iframe iframe {
  width: 100%;
  height: 100%;
}
.p-newa-detail .p-newa-detail__btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-newa-detail .p-newa-detail__inner {
    max-width: 560px;
    width: 90.6%;
  }
  .p-newa-detail .p-newa-detail__ttl {
    padding: 20px;
  }
  .p-newa-detail .p-newa-detail__ttl .-ttl {
    font-size: 18px;
  }
  .p-newa-detail .p-newa-detail__cont {
    margin-top: 16px;
    padding: 20px 20px 40px 20px;
  }
  .p-newa-detail .p-newa-detail__cont > * {
    font-size: 14px;
  }
  .p-newa-detail .p-newa-detail__btn {
    margin-top: 40px;
  }
}

/*------------------------------------------------

p-achievement

-------------------------------------------------*/
@media screen and (max-width: 768px) {
  #achievement .c-content-main {
    padding-top: 25px;
  }
}

.p-achievement-area .inner {
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .p-achievement-area .inner {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}
.p-achievement-area .c-ttl02 {
  margin-bottom: 27px;
}
.p-achievement-area .c-btn01 {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-achievement-area .c-btn01 {
    margin-top: 70px;
  }
}
.p-achievement-area .c-btn01 a {
  padding: 20px 32px;
  background: #fff;
  border-radius: 36px;
}
.p-achievement-area .c-btn01 a .-arrow {
  padding-right: 32px;
  padding-left: 12px;
}
.p-achievement-area .c-btn01 a .-arrow:after {
  right: -20px;
}

.achievement-block01 {
  background: #fff;
  border-radius: 8px;
  padding: 40px 40px 10px;
}
@media screen and (max-width: 768px) {
  .achievement-block01 {
    padding: 25px 15px;
  }
}
.achievement-block01-flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex {
    display: block;
    margin-bottom: 45px;
  }
}
.achievement-block01-flex .achievement-block01-content {
  width: 65.81%;
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 25px;
  }
}
.achievement-block01-flex .achievement-block01-content .lbl {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 20px;
  background: #6CC9B7;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content .lbl {
    margin-bottom: 10px;
    padding: 2px 15px;
  }
}
.achievement-block01-flex .achievement-block01-content .lbl-blue {
  background: #71B1D2 !important;
}
.achievement-block01-flex .achievement-block01-content .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.46;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content .ttl {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.achievement-block01-flex .achievement-block01-content .small-txt {
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content .small-txt {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content table tr:last-child th,
  .achievement-block01-flex .achievement-block01-content table tr:last-child td {
    border-bottom: none;
  }
}
.achievement-block01-flex .achievement-block01-content table th,
.achievement-block01-flex .achievement-block01-content table td {
  padding: 10px 0;
  border-collapse: collapse;
  border-bottom: 2px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content table th,
  .achievement-block01-flex .achievement-block01-content table td {
    padding: 7px 0;
  }
}
.achievement-block01-flex .achievement-block01-content table th {
  width: 110px;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content table th {
    font-size: 12px;
    width: 65px;
  }
}
.achievement-block01-flex .achievement-block01-content table td {
  width: calc(100% - 110px);
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-content table td {
    font-size: 14px;
    width: calc(100% - 65px);
  }
}
.achievement-block01-flex .achievement-block01-img {
  width: 34.19%;
}
@media screen and (max-width: 768px) {
  .achievement-block01-flex .achievement-block01-img {
    width: 100%;
  }
}
.achievement-block01-glr h3.sub-ttl {
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #E6E6E6;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 768px) {
  .achievement-block01-glr h3.sub-ttl {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.achievement-block01-glr ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media screen and (max-width: 768px) {
  .achievement-block01-glr ul {
    display: block;
    margin: 0;
  }
}
.achievement-block01-glr ul li {
  width: 33.333%;
  padding: 0 12px;
  margin-bottom: 30px;
}
.achievement-block01-glr ul li img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .achievement-block01-glr ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .achievement-block01-glr ul li:last-child {
    margin-bottom: 0;
  }
}
.achievement-block01-glr ul span {
  display: block;
  margin-top: 6px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .achievement-block01-glr ul span {
    font-size: 14px;
    margin-top: 5px;
  }
}

.wp-block-file__button {
  color: #fff !important;
}/*# sourceMappingURL=single.css.map */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
