@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #040000;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* pictureタグのリセット */
picture {
  display: block;
}

/* リンク */
a {
  color: #0072b2;
  text-decoration: underline;
  transition: 0.3s;
}

a:hover {
  opacity: 0.75;
}

/* フォーム入力項目 */
input,
textarea,
select {
  border: 1px solid #c6c6c6;
}

/* プレースホルダ */
::placeholder {
  color: #a4a4a4;
}

/* 折返し処理 */
.nowrap {
  white-space: nowrap;
}

/* レスポンシブな表示切替 */
@media screen and (min-width: 769px) {
  .pcshow {
    display: inherit !important;
  }
}

@media screen and (max-width: 768px) {
  .pcshow {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spshow {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .spshow {
    display: inherit !important;
  }
}

/*----------------------------------------------------
ブランドロゴ
---------------------------------------------------- */
.brand {
  grid-gap: 1.5rem;
  display: flex;
  align-items: center;
}

.brand__name {
  order: 1;
  color: #040000;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
}

.brand__name span {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
}

.brand__link {
  display: block;
  order: 0;
  text-decoration: none;
}

/*----------------------------------------------------
パンくずリスト
---------------------------------------------------- */
.breadcrumb {
  margin-bottom: 4rem;
  background-color: #efefef;
}

@media screen and (min-width: 769px) {
  .breadcrumb {
    margin-bottom: 10rem;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}

@media screen and (min-width: 769px) {
  .breadcrumb__list {
    max-width: 118rem;
    margin: auto;
    padding: 1.5rem;
  }
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #7f7f80;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .breadcrumb__item {
    height: 2rem;
    font-size: 1.6rem;
  }
}

.breadcrumb__item:not(:last-child)::after {
  display: block;
  margin: 0 0.6em;
  border: 0.5em solid transparent;
  border-right: none;
  border-left: 0.6em solid #c6c6c6;
  content: '';
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: inherit;
}

/*----------------------------------------------------
記事エリア
---------------------------------------------------- */
.entry__header {
  margin-bottom: 3rem;
}

@media screen and (min-width: 992px) {
  .entry__header {
    margin-bottom: 5rem;
  }
}

.entry__headingSub {
  color: #7f7f80;
  font-weight: bold;
  font-size: 1.3rem;
}

@media screen and (min-width: 992px) {
  .entry__headingSub {
    font-size: 1.8rem;
  }
}

.entry__heading {
  color: #040000;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
}

@media screen and (min-width: 992px) {
  .entry__heading {
    font-size: 2.5rem;
  }
}

.entry__headingCate {
  margin-top: 1rem;
}

.entry__headingCate a {
  color: #0072b2;
  font-size: 1.4rem;
}

/*----------------------------------------------------
Fancybox
---------------------------------------------------- */
.fancybox-bg {
  background-color: #e9f0f6;
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
}

.fancybox-button {
  width: 7rem;
  height: 7rem;
  background-color: #040000;
  color: #ffffff;
}

.fancybox-caption {
  top: 0;
  bottom: unset;
  margin: 0;
  padding: 1em;
  background: transparent;
  color: #040000;
  font-weight: bold;
  font-size: 1.5em;
  text-align: left;
}

/*----------------------------------------------------
スクロール時に上部に固定
---------------------------------------------------- */
@media screen and (min-width: 769px) {
  .fixarea {
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
  }
}

/*----------------------------------------------------
フッター
---------------------------------------------------- */
.footer {
  background-color: #ffffff;
  font-size: 1.4rem;
}

.footer .container {
  padding-right: 0;
  padding-left: 0;
}

@media screen and (min-width: 992px) {
  .footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 20rem;
  }
}

@media screen and (min-width: 992px) {
  .footer__nav {
    margin-bottom: 0;
  }
}

.footer__copy {
  padding: 0.5rem;
  background-color: #040000;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}

/*----------------------------------------------------
フッターナビ
---------------------------------------------------- */
@media screen and (min-width: 992px) {
  .fNav__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.fNav__item {
  border-bottom: 1px solid #7f7f80;
}

@media screen and (min-width: 992px) {
  .fNav__item {
    position: relative;
    border-bottom: none;
  }
  .fNav__item::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1em;
    transform: translateY(-50%);
    background-color: #7f7f80;
    content: "";
  }
  .fNav__item:last-child::before {
    display: none;
  }
}

.fNav__link {
  display: block;
  padding: 1.5em;
  color: #000000;
  text-align: center;
  text-decoration: none;
}

.fNav__link:hover {
  background-color: #000000;
  color: #ffffff;
}

/*----------------------------------------------------
フォーム
---------------------------------------------------- */
[type=text], [type=email], [type=tel], [type=date], [type=number], select, textarea {
  width: 100%;
}

input[type=date] {
  position: relative;
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form__heading {
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 0.5rem solid #0072b2;
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (min-width: 992px) {
  .form__heading {
    font-size: 2rem;
  }
}

.form__heading:not(:first-child) {
  margin-top: 5rem;
}

.form__row {
  grid-gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 992px) {
  .form__row {
    grid-gap: 5rem;
    flex-direction: row;
    max-width: 83rem;
    margin-right: auto;
    margin-bottom: 3rem;
    margin-left: auto;
  }
}

.form__row:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .form__col:first-child, .form__col--search:first-child {
    width: 16em;
  }
  .form__col:last-child {
    width: 100%;
  }
  .form__col--search:nth-child(2) {
    width: 100%;
  }
  .form__col--search:last-child {
    width: 8em;
  }
  .form__col--search-end {
    align-content: flex-end;
  }
}

.form__label {
  color: #0072b2;
  font-weight: 500;
  font-size: 1.8rem;
}

.form__label .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  padding: 0.5rem;
  background-color: #ff0000;
  color: #ffffff;
  font-weight: normal;
  font-size: 80%;
  line-height: 1;
}

.form__control {
  padding: 1rem;
  border: 1px solid #c6c6c6;
  background-color: #ffffff;
  font-size: 1.6rem;
}

.form__control:focus {
  background-color: #FDFAD5;
}

.form__control--short {
  width: 5em;
}

.form__check {
  grid-gap: 1rem;
  display: flex;
  align-items: center;
}

.form__button {
  width: 23rem;
  margin: auto;
  padding: 1.2rem;
  border: 1px solid #c6c6c6;
  background-color: #ffffff;
  color: #040000;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  transition: 0.3s;
}

.form__button:hover {
  opacity: 0.75;
}

.form__search {
  margin-bottom: 15px;
  padding: 35px 10px 20px;
  background-color: #efefef;
}

/*----------------------------------------------------
グローバルナビ
---------------------------------------------------- */
@media screen and (min-width: 769px) {
  .gNav {
    height: 100%;
  }
}

.gNav__list {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 6.5em);
  height: 100%;
  transform: translateX(-100%);
  background-color: #040000;
  opacity: 0;
  transition: 0.3s;
}

.gNav__list--open {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (min-width: 1400px) {
  .gNav__list {
    display: flex;
    position: static;
    align-items: center;
    width: auto;
    transform: unset;
    opacity: 1;
  }
}

.gNav__item {
  border-bottom: 1px solid #ffffff;
  background-color: #040000;
}

@media screen and (min-width: 1200px) {
  .gNav__item {
    border: none;
  }
}

@media screen and (min-width: 1400px) {
  .gNav__item:first-child {
    padding-left: 2rem;
  }
  .gNav__item:nth-last-child(2) {
    padding-right: 2rem;
  }
  .gNav__item:last-child {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.gNav__item--cta {
  background-color: #ab010e;
}

.gNav__link {
  display: block;
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .gNav__link {
    display: flex;
    align-items: center;
    height: 7rem;
    padding: 1.5rem 2rem;
    text-align: center;
  }
}

.gNav__link i {
  margin-right: 0.5em;
  font-size: 120%;
}

/*----------------------------------------------------
ハンバーガー
---------------------------------------------------- */
.hamburger {
  display: flex;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  padding: 2rem 1.5rem;
  background-color: #040000;
}

@media screen and (min-width: 769px) {
  .hamburger {
    height: 7rem;
  }
}

@media screen and (min-width: 1400px) {
  .hamburger {
    display: none;
  }
}

.hamburger__line, .hamburger::before, .hamburger::after {
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s;
}

.hamburger::before, .hamburger::after {
  position: absolute;
  content: "";
  transition: 0.3s;
}

.hamburger::before {
  transform: translateY(-1.2rem);
}

.hamburger::after {
  transform: translateY(1.2rem);
}

.hamburger--open::before {
  transform: rotate(45deg);
}

.hamburger--open::after {
  transform: rotate(-45deg);
}

.hamburger--open .hamburger__line {
  opacity: 0;
}

/*----------------------------------------------------
ヘッダー
---------------------------------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
}

.header__logo {
  display: none;
  height: 7rem;
  padding: 1.5rem 2rem;
}

@media screen and (min-width: 769px) {
  .header__logo {
    display: block;
  }
}

/*----------------------------------------------------
ヒーローヘッダー
---------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vw * (1161 / 948));
  background: url(../img/index/hero-bg@2x.jpg);
  background-position: center bottom;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .hero {
    height: calc(100vw * (700 / 1400));
    max-height: 745px;
    background-image: url(../img/index/hero-bg.jpg);
  }
}

.hero--sub {
  height: calc(100vw * (100 / 380));
  background-image: url(../img/common/hero-bg.jpg);
}

@media screen and (min-width: 769px) {
  .hero--sub {
    height: 300px;
    background-image: url(../img/common/hero-bg.jpg);
  }
}

.hero__heading {
  position: relative;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: 1px 2px 2px #000;
}

.hero__heading--top {
  order: 1;
}

.hero__heading--top::before {
  -webkit-text-stroke: 1px #ffffff55;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: attr(data-title);
  font-size: 2.5em;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
}

@media screen and (min-width: 1200px) {
  .hero__heading--top::before {
    font-size: 14rem;
  }
}

.hero__heading--sub {
  margin-bottom: 0;
  text-shadow: none;
}

@media screen and (min-width: 769px) {
  .hero__heading--sub {
    margin-bottom: 0;
    font-size: 3rem;
  }
}

.hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__brand {
  order: 0;
  margin-bottom: 2em;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .hero__brand {
    margin-bottom: 3em;
  }
}

.hero__brandImg {
  width: clamp(10rem, 50%, 20rem);
}

@media screen and (min-width: 1200px) {
  .hero__brandImg {
    width: 20rem;
  }
}

/*----------------------------------------------------
レイアウト
---------------------------------------------------- */
/* メインエリア */
.main {
  overflow: hidden;
  font-size: 1.5rem;
}

@media screen and (min-width: 769px) {
  .main {
    padding-top: 7rem;
    font-size: 1.8rem;
  }
}

.main__primary {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

@media screen and (min-width: 992px) {
  .main__primary {
    width: calc(100% * (700 / 1150));
    margin: 0;
    padding: 0;
  }
}

.main__secondary {
  padding: 0 1rem;
}

@media screen and (min-width: 992px) {
  .main__secondary {
    width: calc(100% * (350 / 1150));
    margin: 0;
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .main--2col {
    display: flex;
    justify-content: space-between;
    max-width: 118rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

/* コンテナ */
.container {
  width: 100%;
  max-width: calc(1000px + 20px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.container--full {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.container--footer {
  width: 100%;
  max-width: calc(1000px + 200px);
}

/*----------------------------------------------------
ページ
---------------------------------------------------- */
.page__header {
  position: relative;
  height: calc(100vw * (700 / 1400));
}

@media screen and (min-width: 769px) {
  .page__header {
    height: 400px;
  }
}

.page__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1rem, 4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

.page__title::before {
  -webkit-text-stroke: 1px #ffffff55;
  -webkit-text-fill-color: transparent;
  display: block;
  content: attr(data-title);
  font-weight: normal;
  font-size: 6em;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
}

/*----------------------------------------------------
ページネーション
---------------------------------------------------- */
.pager {
  grid-gap: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager__prev {
  display: block;
}

.pager__next {
  display: block;
}

.pager__list {
  grid-gap: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #c6c6c6;
  color: #7f7f80;
  font-size: 1.4rem;
  font-family: Arial;
}

.pager__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.pager__num:hover {
  color: inherit;
}

/*----------------------------------------------------
Pagetop
---------------------------------------------------- */
.pagetop {
  z-index: 1000;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  transition: 0.5s;
}

@media screen and (min-width: 769px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
    width: 63px;
    height: 63px;
  }
}

/*----------------------------------------------------
section
---------------------------------------------------- */
/* 見出し */
.section-heading {
  position: relative;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.2;
  text-align: center;
}

.section-heading::before {
  -webkit-text-stroke: 1px #ffffff55;
  -webkit-text-fill-color: transparent;
  display: block;
  content: attr(data-title);
  font-weight: normal;
  font-size: 3.5em;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
}

@media screen and (min-width: 1200px) {
  .section-heading::before {
    font-size: 12rem;
  }
}

.section-heading--navy {
  padding: 0.5em;
  background-color: #040000;
  box-shadow: 2px 5px 0 #006f9a;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  text-align: left;
}

.section-heading--brown {
  padding: 0.5em;
  background-color: #040000;
  box-shadow: 2px 5px 0 #a2000f;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  text-align: left;
}

.section-heading--navy-flat {
  padding: 0.5em;
  background-color: #006f9a;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
}

/*----------------------------------------------------
sidebar
---------------------------------------------------- */
.sidebar {
  grid-gap: 2.5rem;
  display: grid;
}

@media screen and (min-width: 769px) {
  .sidebar {
    grid-gap: 5rem;
  }
}

/*----------------------------------------------------
widget
---------------------------------------------------- */
.widget__heading {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-image: linear-gradient(90deg, #0072B2, #4DA6DC);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: center;
}

/*----------------------------------------------------
sidemenu
---------------------------------------------------- */
.sidemenu {
  padding: 0 1rem;
  color: #040000;
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .sidemenu {
    font-size: 1.8rem;
  }
}

.sidemenu__item {
  font-weight: bold;
  font-size: 1.8rem;
}

.sidemenu__child {
  display: none;
  padding-left: 1.5rem;
  color: #040000;
  transition: 0.3s;
}

.sidemenu__child--open {
  display: block;
}

.sidemenu__link {
  display: block;
  margin-bottom: 1rem;
  color: inherit;
  text-decoration: none;
}

.sidemenu__link:hover {
  color: inherit;
}

.sidemenu__link--hasChild {
  color: #040000;
}

.sidemenu__link--hasChild::before {
  position: relative;
  top: -3px;
  margin-right: 4px;
  content: "▶";
  font-size: 1.0rem;
}

/*----------------------------------------------------
siteinfo
---------------------------------------------------- */
.siteinfo {
  padding: 3em 1em;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .siteinfo {
    padding: 0;
    text-align: left;
  }
}

.siteinfo__name {
  font-weight: bold;
  font-size: 1.2em;
}

@media screen and (min-width: 992px) {
  .siteinfo__name {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px) {
  .siteinfo__address {
    font-size: 1.3rem;
    white-space: nowrap;
  }
}

/*----------------------------------------------------
Slick
---------------------------------------------------- */
.slick-arrow {
  transform: scale(2, 4);
}

@media screen and (min-width: 769px) {
  .slick-arrow {
    transform: scale(4, 8);
  }
}

.slick-arrow::before {
  color: #c7d6db;
  font-family: "Font Awesome 6 Free";
  opacity: 1;
}

.slick-prev {
  left: -1rem;
}

@media screen and (min-width: 769px) {
  .slick-prev {
    left: 0;
  }
}

.slick-prev::before {
  content: "\f0d9";
}

.slick-next {
  right: -3rem;
}

@media screen and (min-width: 769px) {
  .slick-next {
    right: -4rem;
  }
}

.slick-next::before {
  content: "\f0da";
}

/*----------------------------------------------------
会社概要
---------------------------------------------------- */
.about-company {
  padding: 10rem 0;
}

.about-company__header {
  margin-bottom: 8rem;
}

@media screen and (min-width: 769px) {
  .about-company__body table {
    font-size: 1.8rem;
  }
}

.about-company__body table th,
.about-company__body table td {
  padding: 1.5em;
  border-top: 1px solid #777;
}

.about-company__body table th {
  background-color: #eeeeee;
  white-space: nowrap;
}

.about-company__body table td {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .about-company__body table td {
    padding-left: 4em;
  }
}

.about-company__body table tr:last-child th,
.about-company__body table tr:last-child td {
  border-bottom: 1px solid #777;
}

/*----------------------------------------------------
イントロ
---------------------------------------------------- */
.about-intro {
  padding: 5rem 0;
  background: url(../img/about/pic-intro-bg.jpg) no-repeat;
  background-position: center bottom;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .about-intro {
    padding: 14rem 0 23rem;
  }
}

.about-intro__header {
  margin-bottom: 3rem;
}

@media screen and (min-width: 769px) {
  .about-intro__header {
    margin-bottom: 6rem;
  }
}

@media screen and (min-width: 769px) {
  .about-intro__contents {
    display: flex;
  }
}

@media screen and (min-width: 769px) {
  .about-intro__pic {
    flex: 0 0 calc(100% * (470 / 1000));
    order: 1;
  }
}

.about-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__desc {
  padding: 3em 1em;
  background-color: #ffffffb0;
}

@media screen and (min-width: 769px) {
  .about-intro__desc {
    flex: 0 0 calc(100% * (530 / 1000));
    order: 0;
  }
}

/*----------------------------------------------------
地図
---------------------------------------------------- */
.about-map {
  height: 400px;
}

@media screen and (min-width: 769px) {
  .about-map {
    height: 625px;
  }
}

.about-map iframe {
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------
Feature
---------------------------------------------------- */
.feature {
  padding: 7.5rem 0;
  background: url(../img/feature/feature-bg.jpg) no-repeat;
  background-size: cover;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .feature {
    padding: 15.5rem 0 10.5rem;
  }
}

.feature__header {
  margin-bottom: 8rem;
}

.feature__lead {
  margin-bottom: 4em;
  text-align: center;
}

.feature__body p {
  margin-bottom: 1em;
}

.feature__pic {
  margin-bottom: 5.5rem;
  text-align: center;
}

.feature__prs {
  grid-gap: 3em 1.5em;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .feature__prs {
    grid-gap: 3.5rem;
    flex-direction: row;
  }
}

.feature__pr {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .feature__pr {
    width: calc((100% - 7rem) / 3);
  }
}

.feature__pr-pic img {
  width: 100%;
}

.feature__pr-ttl {
  margin: 1em 0;
  font-weight: bold;
  font-size: 135%;
}

.feature__btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  border-bottom: 6px solid #006f9a;
  background-color: #040000;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.feature__btn-detail--navy {
  border-bottom-color: #006f9a;
}

.feature__btn-detail--brown {
  border-bottom-color: #a2000f;
}

/*----------------------------------------------------
Leave it
---------------------------------------------------- */
.leave-it {
  padding: 7.5rem 0;
}

@media screen and (min-width: 769px) {
  .leave-it {
    padding: 16rem 0 15rem;
  }
}

.leave-it__header {
  margin-bottom: 4rem;
}

@media screen and (min-width: 769px) {
  .leave-it__header {
    margin-bottom: 6rem;
  }
}

.leave-it__list {
  grid-gap: 1rem 4.5rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .leave-it__list {
    flex-direction: row;
  }
}

.leave-it__item {
  padding: 0.7em 0;
  border-bottom: 1px solid #040000;
  font-weight: bold;
  font-size: clamp(1.8rem, 4.8vw, 2.5rem);
}

@media screen and (min-width: 769px) {
  .leave-it__item {
    width: calc((100% - 4.5rem) / 2);
  }
}

/*----------------------------------------------------
Step
---------------------------------------------------- */
.flow-step {
  padding: 7.5rem 0;
}

@media screen and (min-width: 769px) {
  .flow-step {
    padding: 15rem 0;
  }
}

.flow-step__header {
  margin-bottom: 4.5rem;
}

@media screen and (min-width: 769px) {
  .flow-step__header {
    margin-bottom: 9.5rem;
  }
}

.flow-step__list {
  grid-gap: 8rem;
  display: flex;
  flex-direction: column;
  counter-reset: count;
}

@media screen and (min-width: 769px) {
  .flow-step__list {
    grid-gap: 10rem;
  }
}

.flow-step__item {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .flow-step__item {
    display: flex;
  }
}

.flow-step__item:not(:last-child)::after {
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  border: 4rem solid transparent;
  border-top: 4rem solid #a2000f;
  border-bottom: 0;
  content: "";
}

@media screen and (min-width: 769px) {
  .flow-step__item:not(:last-child)::after {
    top: calc(100% + 2.5rem);
    border-width: 5.5rem;
  }
}

.flow-step__ttl {
  grid-gap: 0.5em;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5em 1em;
  border-right: 4px solid #a2000f;
  background-color: #040000;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1.8rem, 5.8vw, 2.5rem);
  line-height: 1.2;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .flow-step__ttl {
    min-width: 25rem;
  }
}

.flow-step__ttl::before {
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  display: block;
  content: counter(count);
  font-weight: normal;
  font-size: 3.5em;
  line-height: 1;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
  counter-increment: count;
}

.flow-step__desc {
  padding: 1.5em;
  background-color: #eaeaec;
}

@media screen and (min-width: 769px) {
  .flow-step__desc {
    flex: 1 1 100%;
    padding: 3em;
  }
}

.flow-step__desc strong {
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2.1rem);
}

.flow-step__phone {
  color: #006f9a;
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2.4rem);
  text-decoration: none;
}

/*----------------------------------------------------
inquiry
---------------------------------------------------- */
.inquiry {
  padding: 7.5rem 0;
}

@media screen and (min-width: 769px) {
  .inquiry {
    padding: 15rem 0;
  }
}

.inquiry__header {
  margin-bottom: 4.5rem;
}

@media screen and (min-width: 769px) {
  .inquiry__header {
    margin-bottom: 9.5rem;
  }
}

/*----------------------------------------------------
Technique
---------------------------------------------------- */
.technique {
  padding: 7.5rem 0;
  /* Tab */
  /* List */
}

@media screen and (min-width: 769px) {
  .technique {
    padding: 15rem 0;
    font-size: 1.5rem;
  }
}

.technique__header {
  margin-bottom: 1.5rem;
}

.technique__lead {
  margin-bottom: 4em;
  text-align: center;
}

.technique__body p {
  margin-bottom: 1em;
}

.technique .nav-tabs {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .technique .nav-tabs {
    grid-gap: 6rem;
  }
}

.technique .nav-item {
  display: flex;
  position: relative;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-bottom: 6px solid #a2000f;
  background-color: #040000;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .technique .nav-item {
    flex: 1 1 calc((100% - 6rem) / 2);
  }
}

.technique .nav-item i {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 70%;
}

.technique .tab-pane {
  padding-top: 4.5rem;
  /* タブによる表示切替 
    display: none;*/
}

@media screen and (min-width: 769px) {
  .technique .tab-pane {
    padding-top: 9rem;
  }
}

.technique .tab-pane.active {
  display: block;
}

.technique .tab-pane .section-heading {
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 769px) {
  .technique .tab-pane .section-heading {
    margin-bottom: 7rem;
  }
}

.technique__list {
  grid-gap: 3rem;
  display: flex;
  flex-direction: column;
}

.technique__item {
  grid-gap: 1em;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .technique__item {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 769px) {
  .technique__item:first-child {
    align-items: center;
  }
}

.technique__item:nth-child(2) {
  margin-top: 5rem;
}

@media screen and (min-width: 769px) {
  .technique__item:nth-child(2) {
    margin-top: 12.5rem;
  }
}

.technique__item:nth-child(2)::after {
  position: absolute;
  bottom: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  border: 4rem solid transparent;
  border-top: 4rem solid #a2000f;
  border-bottom: 0;
  content: "";
}

@media screen and (min-width: 769px) {
  .technique__item:nth-child(2)::after {
    bottom: calc(100% + 4rem);
    border-width: 5.5rem;
  }
}

.technique__item-ttl {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5em;
  border-bottom: 6px solid #a2000f;
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2.1rem);
}

@media screen and (min-width: 769px) {
  .technique__item-pic {
    flex: 0 0 420px;
  }
}

@media screen and (min-width: 769px) {
  .technique__item-desc {
    font-size: 1.5rem;
  }
}

/*----------------------------------------------------
Contact
---------------------------------------------------- */
.contact {
  background-color: #040000;
}

.contact .container {
  width: 80%;
}

.contact__header {
  padding-top: 20%;
  color: #ffffff;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .contact__header {
    padding-top: 130px;
  }
}

.contact .section-heading {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 5.5em;
  line-height: 1;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .contact .section-heading {
    font-size: 12rem;
  }
}

.contact__lead {
  font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .contact__lead {
    font-size: 1.8rem;
  }
}

.contact__body {
  padding: 2.5em 0 5em;
}

@media screen and (min-width: 769px) {
  .contact__body {
    padding: 40px 0 150px;
  }
}

.contact__list {
  grid-gap: 1em;
  display: grid;
}

@media screen and (min-width: 1200px) {
  .contact__list {
    grid-gap: 8rem;
    grid-template-columns: repeat(auto-fit, calc((100% - 8rem) / 2));
  }
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 16rem;
  padding: 2em;
  background-color: #ffffff;
  color: #040000;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .contact__item {
    height: 20.5rem;
  }
}

.contact__item:hover {
  background-color: #040000;
  color: #ffffff;
}

.contact__item--phone .contact__cap {
  font-weight: normal;
  font-size: clamp(2rem, 11vw, 5rem);
  font-family: "Bebas Neue", cursive;
}

.contact__item--phone i {
  transform: rotate(19deg);
}

@media screen and (min-width: 769px) {
  .contact__item--phone .contact__cap {
    font-size: 6rem;
  }
}

.contact__desc {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .contact__desc {
    margin-bottom: 1em;
    font-size: 2rem;
  }
}

.contact__cap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .contact__cap {
    font-size: 3rem;
  }
}

.contact__cap i {
  margin-right: 0.3em;
  font-size: clamp(2.3rem, 6vw, 5rem);
}

/*----------------------------------------------------
Driver
---------------------------------------------------- */
.driver {
  width: 100%;
  height: calc(100vw * (1256 / 947));
  background: url(../img/index/driver-bg@2x.jpg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .driver {
    max-height: 680px;
    background-image: url(../img/index/driver-bg.jpg);
  }
}

.driver .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .driver .container {
    width: 100%;
  }
}

.driver__body {
  text-align: center;
}

.driver__lead {
  margin-bottom: 4em;
  font-size: 1.2rem;
}

@media screen and (min-width: 1200px) {
  .driver__lead {
    font-size: 1.6rem;
  }
}

.driver__btn-detail {
  padding: 0.5em 2em;
  background-color: #040000;
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .driver__btn-detail {
    font-size: 1.6rem;
  }
}

.driver__btn-detail:hover {
  background-color: #ffffff;
  color: #040000;
}

/*----------------------------------------------------
Service
---------------------------------------------------- */
.service__header {
  margin-bottom: 2em;
}

@media screen and (min-width: 769px) {
  .service__header {
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.service .section-heading {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 5.5em;
  line-height: 1;
  font-family: "Bebas Neue", cursive;
  text-shadow: none;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .service .section-heading {
    font-size: 12rem;
  }
}

.service__lead {
  font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .service__lead {
    font-size: 1.8rem;
  }
}

.service__list {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .service__list {
    display: flex;
  }
}

.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
  background-position: center;
  background-size: cover;
}

.service__item:nth-child(1) {
  height: calc(100vw * (977 / 947));
  background-image: url(../img/index/service-bg1@2x.jpg);
}

@media screen and (min-width: 769px) {
  .service__item:nth-child(1) {
    height: 690px;
    background-image: url(../img/index/service-bg1.jpg);
  }
}

.service__item:nth-child(2) {
  height: calc(100vw * (675 / 947));
  background-image: url(../img/index/service-bg2@2x.jpg);
}

@media screen and (min-width: 769px) {
  .service__item:nth-child(2) {
    height: 690px;
    background-image: url(../img/index/service-bg2.jpg);
  }
}

.service__item:nth-child(3) {
  height: calc(100vw * (676 / 947));
  background-image: url(../img/index/service-bg3@2x.jpg);
}

@media screen and (min-width: 769px) {
  .service__item:nth-child(3) {
    height: 690px;
    background-image: url(../img/index/service-bg3.jpg);
  }
}

.service__desc {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 1;
}

.service__btn-detail {
  padding: 0.5em 2em;
  background-color: #040000;
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .service__btn-detail {
    font-size: 1.6rem;
  }
}

.service__btn-detail:hover {
  background-color: #ffffff;
  color: #040000;
}

/*----------------------------------------------------
Technic
---------------------------------------------------- */
.technic {
  width: 100%;
  height: calc(100vw * (1256 / 947));
  background: url(../img/index/technic-bg@2x.jpg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .technic {
    max-height: 680px;
    background-image: url(../img/index/technic-bg.jpg);
  }
}

.technic .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .technic .container {
    width: 100%;
  }
}

.technic__body {
  text-align: center;
}

.technic__lead {
  margin-bottom: 4em;
  font-size: 1.2rem;
}

@media screen and (min-width: 1200px) {
  .technic__lead {
    font-size: 1.8rem;
  }
}

.technic__btn-detail {
  padding: 0.5em 2em;
  background-color: #040000;
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .technic__btn-detail {
    font-size: 1.6rem;
  }
}

.technic__btn-detail:hover {
  background-color: #ffffff;
  color: #040000;
}

/*----------------------------------------------------
Fleets
---------------------------------------------------- */
.fleets {
  padding: 7.5rem 0;
  /* Tab */
  /* Figure */
  /* AirSuspension */
  /* PowerGate */
  /* PR */
  /* Reference */
  /* Slider */
  /* Banner */
  /* Other */
}

@media screen and (min-width: 769px) {
  .fleets {
    padding: 15rem 0;
    font-size: 1.6rem;
  }
}

.fleets__header {
  margin-bottom: 1.5rem;
}

.fleets__lead {
  margin-bottom: 4em;
  text-align: center;
}

.fleets__body p {
  margin-bottom: 1em;
}

.fleets .nav-tabs {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .fleets .nav-tabs {
    grid-gap: 2rem;
  }
}

.fleets .nav-item {
  display: flex;
  position: relative;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-bottom: 5px solid #006f9a;
  background-color: #040000;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .fleets .nav-item {
    flex: 1 1 calc((100% - 4rem) / 3);
  }
}

.fleets .nav-item i {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 70%;
}

.fleets .tab-pane {
  padding-top: 4.5rem;
  /* タブによる表示切替 
    display: none;*/
}

@media screen and (min-width: 769px) {
  .fleets .tab-pane {
    padding-top: 9rem;
  }
}

.fleets .tab-pane.active {
  display: block;
}

.fleets .tab-pane .section-heading {
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 769px) {
  .fleets .tab-pane .section-heading {
    margin-bottom: 2rem;
  }
}

.fleets__fig {
  grid-gap: 1em;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8rem;
}

@media screen and (min-width: 769px) {
  .fleets__fig {
    grid-gap: 3rem;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 8rem;
  }
}

.fleets__fig-pic-cap p + p {
  margin-top: 1em;
}

@media screen and (min-width: 769px) {
  .fleets__fig-pic-cap p:last-child {
    margin-bottom: 0;
  }
}

.fleets__fig-pic img {
  width: 100%;
}

.fleets__airsus .fleets__fig {
  padding: 1em;
  background-color: #e9f0f6;
}

@media screen and (min-width: 769px) {
  .fleets__airsus .fleets__fig {
    margin-bottom: 11rem;
    padding: 2rem;
  }
}

.fleets__airsus .fleets__fig ::after {
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  border: 4rem solid transparent;
  border-top: 4rem solid #006f9a;
  border-bottom: 0;
  content: "";
}

@media screen and (min-width: 769px) {
  .fleets__airsus .fleets__fig ::after {
    top: calc(100% + 3rem);
    border-width: 5.5rem;
  }
}

@media screen and (min-width: 769px) {
  .fleets__airsus .fleets__fig .fleets__fig-pic {
    flex: 0 0 393px;
  }
}

@media screen and (min-width: 769px) {
  .fleets__gate .fleets__fig-pic {
    flex: 0 0 475px;
  }
}

.fleets__prs {
  grid-gap: 1.5em;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 3em;
  margin-bottom: 6em;
}

@media screen and (min-width: 769px) {
  .fleets__prs {
    grid-gap: 3rem;
    flex-direction: row;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 769px) {
  .fleets__pr {
    width: calc((100% - 6rem) / 3);
  }
}

.fleets__pr-ttl {
  margin-bottom: 1em;
  padding-bottom: 0.2em;
  border-bottom: 5px solid #006f9a;
  font-weight: bold;
  font-size: 135%;
  text-align: center;
}

.fleets__pr-pic {
  margin-bottom: 0.5rem;
}

.fleets__pr-pic img {
  width: 100%;
}

.fleets__refs {
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 1em;
  background-color: #dfeaf0;
}

@media screen and (min-width: 769px) {
  .fleets__refs {
    margin-top: 3em;
    margin-bottom: 7.5em;
    padding: 2rem 4rem 2rem;
  }
}

.fleets__refs-ttl {
  margin-bottom: 1rem;
  color: #c4d6da;
  font-size: 3em;
  line-height: 1;
  font-family: "Bebas Neue", cursive;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .fleets__slide {
    padding: 0 1.5rem;
  }
}

.fleets__link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  margin: 2em auto;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  text-decoration: none;
}

.fleets__link img {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleets__other h4 {
  margin-bottom: 0.5em;
}
