@charset "utf-8";

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-theme: #001899;
  --color-accent: #e11f24;
  --bg-color-lightgray: #fafafa;
  --bg-color-gray: #ededed;
  --color-lightblue: #e5ebf4;
  --bor-color-bluegray: #d6dce6;
  --color-button: #253298;
  --color-button-darken: #00025c;
  --font-jp: "Noto Sans JP";
  --font-franklin: "Libre Franklin", sans-serif;
  --font-Roboto: Roboto Condensed, sans-serif;
}
/* ベース
********************************************** */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, Roboto Condensed, sans-serif;
  font-optical-sizing: auto;
  color: #202020;
  overflow-x: hidden;
  word-break: break-all;
}
p {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 2;
}
dl {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  p {
    line-height: 1.75;
  }
  dl {
    line-height: 1.75;
  }
}
section {
  padding: 6.25rem 0; /*100px*/
}
@media screen and (max-width: 960px) {
  section {
    padding: 1.875rem 0; /*30px*/
  }
}
/* ページメインビジュアル
********************************************** */
.page-mainVisual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin-top: 100px;
}
.page-mainVisual h2 {
  margin-bottom: 3.75rem;
  font-size: clamp(2rem, 1.375rem + 2.67vw, 3.375rem); /*32px～64px　w750-w1200*/
  min-height: 0vw;
  font-weight: 700;
  text-align: center;
  word-break: normal;
  color: #fff;
}
.page-mainVisual h2 span:nth-of-type(1) {
  position: relative;
  display: inline-block;
   border-bottom:solid 3px var(--color-accent);
    padding-bottom: 0.8rem; 
}
.page-mainVisual h2 span:nth-of-type(2) {
  display: block;
  padding-top: 0.8rem; /*30px*/
  font-family: "Roboto", sans-serif;
  font-size: clamp(1rem, 0.583rem + 0.89vw, 1.25rem); /*16px～20px　w750-w1200*/
  min-height: 0vw;
  font-weight: normal;
}
/*.page-mainVisual h2 span:first-of-type::before {
  position: absolute;
  left: 50%;
  bottom: -30%; 
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  content: "";
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
*/
@media only screen and (max-width: 960px) {
  .page-mainVisual {
    height: 25vh;
    margin-top: 60px;
  }
  .page-mainVisual h2 {
    margin-bottom: 1.875rem; /*30px*/
  }
  .page-mainVisual h2 span:nth-of-type(2) {
    padding-top: 0.625rem; /*10px*/
  }
  .page-mainVisual h2 span:first-of-type::before {
    bottom: -5px;
    width: 30px;
    height: 3px;
  }
}
.bg-img--company {
  background: url("../images/about/bg_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--business {
  background: url("../images/business/bg_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--transportation {
  background: url("../images/business/transportation_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--rental-car {
  background: url("../images/business/rental-car_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--apparel {
  background: url("../images/business/apparel_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--recruit {
  background: url("../images/recruit/bg_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--contact {
  background: url("../images/contact/bg_header.jpg") no-repeat bottom center;
  background-size: cover;
}
.bg-img--privacy {
  background: url("../images/privacy/bg_header.jpg") no-repeat center center;
  background-size: cover;
}
.bg-img--news {
  background: url("../images/news/bg_header.jpg") no-repeat center center;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
	.bg-img--apparel {
  background: url("../images/business/apparel_header_sp.jpg") no-repeat center center;
  background-size: cover;
}
}

/* ページパス
********************************************** */
.breadCrumb {
  padding: 1.875rem 0; /*30px*/
  border-bottom: 1px solid #d6dce6;
}
.breadCrumb__list {
  display: flex;
  justify-content: flex-end;
}
.breadCrumb__list li:before {
  content: "　>　";
  padding: 0 0rem;
  color: #999;
}
.breadCrumb__list li:first-child:before {
  content: "";
}
.breadCrumb__list li {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  font-weight: 700;
}
.breadCrumb__list li a {
  font-weight: normal;
  color: #999;
  transition: .3s;
}
.breadCrumb__list li a:hover {
  text-decoration: underline;
  opacity: .7;
}
@media only screen and (max-width: 767px) {
  .breadCrumb {
    padding: 0.938rem 0; /*15px*/
    border-bottom: 1px solid #d6dce6;
  }
}
/* ページ詳細
********************************************** */
.page__desc {
  display: flex;
  justify-content: space-between;
  padding-top: 3.125rem; /*50px*/
}
.page__desc h2 {
  width: 33%;
  font-weight: 700;
    color: var(--color-theme);
}
.page__desc p {
  flex: 1;
  margin-left: 3.125rem; /*50px*/
}
.page__desc .heading-sm {
font-family: YakuHanJP;
	}
@media only screen and (max-width: 767px) {
  .page__desc {
    flex-direction: column;
    padding-top: 1.563rem; /*25px*/
  }
  .page__desc h2 {
    width: 100%;
    margin-bottom: 1.25rem; /*20px*/
  }
  .page__desc p {
    margin-left: 0;
  }
}
/* ABOUT Magnolialane
********************************************** */
.about__desc {
	padding-top: 3.125rem; /*50px*/
	text-align: center;
}
.about__desc h2 {
	margin-bottom: 1.25rem; /*20px*/
  font-weight: 700;
}
.about__desc p {
  text-align: center;
}
.business__content.about .imageArea img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  font-family: 'object-fit: cover;';
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .about__desc {
    padding-top: 1.563rem; /*25px*/
  }
}
/* メインコンテンツ
********************************************** */
main.mainContent {
  padding: 6.25rem 0; /*100px*/
}
@media only screen and (max-width: 767px) {
  main.mainContent {
    padding: 1.875rem 0; /*30px*/
  }
}
/* 会社概要 about.html
********************************************** */
section.greeting {
  padding-top: 0;
}
.greeting .ttl--main {
  font-size: clamp(2.25rem, -1.5rem + 8vw, 4rem); /*36px～48px　w750-w1200*/
    
/*font-family: futura-pt, sans-serif;*/
font-family:Noto Sans;
font-weight: 500;
font-style: normal;
}
.greeting .ttl--main.ttl--main2 {
  font-size: clamp(2.25rem, -1.5rem + 8vw, 3rem); /*36px～48px　w750-w1200*/
    margin: 0 auto 40px;
    text-align: center;
    border-bottom: 1px solid#ccc;
    max-width: 1200px;
    width: 95%;
    
}

/* .greeting .ttl--main:first-letter {
  font-size: 140%;
  color: var(--color-theme);
} */
.greeting__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.greeting__content2 {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
}
.greeting__content .imageArea {
  width: 30vw;
}
.greeting__content .imageArea2 {
  width: 30%;
    max-width: 350px;
    margin: 0 auto 20px;

}
.greeting__content .imageArea2 img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
.greeting__content .imageArea img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.greeting__content .textArea {
  flex: 1;
  padding-left: 3.75rem; /*60px*/
}
.greeting__content .textArea h2 {
  margin-bottom: 1.875rem; /*30px*/
  font-weight: 700;
}
.greeting__content2 .textArea h2 {
    font-size: 1.7rem;
}
.greeting__content .textArea p {
  text-align: justify;
  line-height: 2.6;
  margin-bottom: 1.875rem; /*30px*/
}
.greeting__content .textArea p:last-child {
  margin-bottom: 0;
}
.greeting__content .name {
  margin-bottom: 3.125rem; /*50px*/
}
.greeting__content .name span:nth-of-type(1) {
  display: block;
  margin-bottom: 1rem;
  font-size: 12px;
}
.greeting__content .name span:nth-of-type(2) {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .greeting__content {
    flex-direction: column;
  }
  .greeting__content .imageArea {
    width: 100%;
    margin-bottom: 1.25rem; /*20px*/
    text-align: center;
  }
  .greeting__content .imageArea img {
    max-width: 90%;
  }
  .greeting__content .textArea {
    width: 100%;
    padding-left: 0;
  }
  .greeting__content .textArea h2 {
    margin-bottom: 1.25rem; /*20px*/
  }
  .greeting__content .textArea p {
    line-height: 2;
    margin-bottom: 1.25rem; /*20px*/
  }
  .greeting__content .name {
    margin-bottom: 1.25rem; /*20px*/
  }
  .greeting__content .name span:nth-of-type(1) {
    margin-bottom: .5rem;
  }
  .greeting__content .name span:nth-of-type(3) {
    font-size: 12px;
  }
}
.outline__content {}
.outline__list {}
.outline__list strong {
  display: block;
}
.outline__list .g-map {
  width: 100%;
  position: relative;
  padding-top: 20%;
  margin: 1rem auto 1rem auto;
}

.outline__list .g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.outline__list li:last-child .g-map {
  margin: 1rem auto 0 auto;
}
.office__content {}
.office__list {}
.office__list li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.875rem 0; /*30px*/
  border-bottom: solid 1px var(--bor-color-bluegray);
}
.office__list h2 {
  width: 20%;
  font-weight: 700;
}
.office__list p:nth-of-type(1) {
  flex: 1;
}
.office__list p:nth-of-type(2) {
  width: 20%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .office__list li {
    flex-direction: column;
  }
  .office__list h2 {
    width: 100%;
    margin-bottom: 1rem;
  }
  .office__list p:nth-of-type(1) {
    width: 100%;
  }
  .office__list p:nth-of-type(2) {
    width: 100%;
    text-align: left;
  }
}
/* 事業案内
********************************************** */
.business__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 6.25rem; /*100px*/
}
.business__content:last-child {
  padding-bottom: 6.25rem;
}
.business__content .imageArea {
  width: 40%;
}
.business__content .imageArea img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  font-family: 'object-fit: cover;';
    margin-bottom: 20px;
}
.business__content .imageArea img:last-child { margin: 0; }
.business__content .textArea {
  flex: 1;
  padding-left: 3.75rem; /*60px*/
}
.business__content .textArea h2 {
  margin-bottom: 1.25rem; /*20px*/
  font-weight: 700;
}
.business__content .textArea h3 {
  margin-bottom: 1.25rem; /*20px*/
}
.business__content .textArea h4 {
  font-weight: 700;
    font-size: 1.2rem;
    margin-top: 40px;
}
.business__content .ruby--en {
    font-size: 16px;
    margin-bottom: 1em;
}
.business__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.business__list li {
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  border-bottom: solid 1px var(--bor-color-bluegray);
  list-style: disc;
  list-style-position: inside;
  /*font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
    font-size: 1rem;
  line-height: 1.5;
  text-indent: -1em;
}
.business__list li:nth-of-type(n+3) {
  padding-top: 0;
  margin-top: 1rem;
}
.container-md.business {
    padding-top: 40px;
}
.business__content .tbl--main tr >*{
    padding: 5px 10px !important
}

.tbl--main .tbl-location {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.tbl-location .textArea {
    width: 55%;
}
.tbl-location .g-map {
    width: 45%;
    height: 150px;
}
@media screen and (max-width: 767px) {
  .business__content {
    flex-direction: column;
    padding-top: 3.125rem; /*50px*/
  }
  .business__content:last-child {
    padding-bottom: 3.125rem; /*50px*/
  }
  .business__content .textArea {
    order: 1;
    width: 100%;
    padding-left: 0;
  }
  .business__content .imageArea {
    order: 2;
    width: 90%;
    margin: 2rem auto 0 auto;
  }
  .business__list {
    flex-direction: column;
  }
  .business__list li {
    width: 100%;
  }
    .business__content .tbl--main tr th {
        padding-bottom: 0 !important
    }
    .business__content .tbl--main tr td {
        padding-top: 0 !important
    }
    .tbl-location .textArea,
    .tbl-location .g-map {
        width: 100%;
    }
}
/* 弊社の強み
********************************************** */
.advantage__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.25rem; /*100px*/
}
.advantage__content .imageArea {
  width: 48%;
}
.advantage__content .imageArea img {
  width: 100%;
  height: auto;
}
.advantage__content .textArea {
  width: 48%;
}
.advantage__content .textArea h2 {
  margin-bottom: 1.875rem; /*30px*/
  font-family: "Roboto Condensed, sans-serif";
  font-weight: 900;
  font-style: italic;
}
.advantage__content .textArea h3.heading-md {
  margin-bottom: 1.875rem; /*30px*/
  font-size: clamp(1.75rem, 0.917rem + 1.78vw, 2.25rem); /*28px～36px　w750-w1200*/
  font-weight: 700;
  line-height: 1.5;
}
.advantage__content .textArea p {
  text-align: justify;
  line-height: 2.6;
}
.car-lineUp__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.875rem; /*30px*/
  margin-bottom: 6.25rem; /*100px*/
}
.car-lineUp__list::after {
  content: "";
  display: block;
  width: calc(33.33% - 20px);
}
.car-lineUp__list li {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 20px); /*アイテム間隔30px*/
  height: auto;
}
.car-lineUp__list li:nth-of-type(n+4) {
  margin-top: 1.875rem;
}
.car-lineUp__list .imageArea img {
  width: 100%;
  height: auto;
}
.mainClient__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem; /*30px*/
}
.mainClient__list li {
  width: 25%;
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .advantage__content {
    flex-direction: column;
    margin-bottom: 3.125rem; /*50px*/
  }
  .advantage__content .imageArea {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .advantage__content .imageArea img {
    width: 80%;
  }
  .advantage__content .textArea {
    order: 1;
    width: 100%;
    margin-bottom: 1.25rem; /*20px*/
  }
  .advantage__content .textArea h2 {
    margin-bottom: 1.25rem; /*20px*/
  }
  .advantage__content .textArea h3 {
    margin-bottom: 1.25rem; /*20px*/
  }
  .advantage__content .textArea p {
    line-height: 2;
  }
  .car-lineUp__list {
    margin-bottom: 3.125rem; /*50px*/
  }
  .car-lineUp__list li {
    width: 49%;
  }
  .car-lineUp__list li:nth-of-type(n+3) {
    margin-top: 1.875rem;
  }
  .mainClient__list {
    flex-direction: column;
  }
  .mainClient__list li {
    width: 100%;
    line-height: 2;
  }
}
/* プライバシーポリシー
********************************************** */
.privacy__content {}
.privacy__list {
  margin-top: 1.25rem; /*20px*/
}
.privacy__list li {
  list-style: decimal;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  line-height: 2;
}
.privacy__content h3 {
  margin-bottom: 1rem; /*16px*/
  font-weight: 700;
}
/* ニュース
********************************************** */
.news__list {}
.news__list li {
  border-bottom: 1px solid #e6e6e6;
}
.news__list li:first-child {
  border-top: 1px solid #e6e6e6;
}
.news__list li a {
  position: relative;
  display: flex;
  padding: 1.875rem .5rem; /*30px 8px*/
  transition: .6s;
}
.news__list li a::after {
  position: absolute;
  top: 50%;
  right: 2rem; /*32px*/
  transform: translateY(-50%);
  transform-origin: left;
  width: 2rem; /*32px*/
  height: .5rem; /*8px*/
  background: #929292;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  transition: transform .3s;
}
/*hoverした際の矢印移動*/
.news__list a:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}
.news__list li a:hover {
  background: #f2f2f2;
}
.news__list .news__date {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.news__list time {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
}
.news__list .news-label {
  min-width: 4.375rem; /*70px*/
  padding: .313rem 0; /*5px*/
  margin-left: 1rem; /*16px*/
  border: 1px solid var(--color-theme);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-theme);
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news__list li a::after {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .news__list li a {
    flex-direction: column;
    padding: 1rem .625rem; /*16px 10px*/
  }
  .news__list .news__date {
    margin-right: 0;
    margin-bottom: 0.125rem;
  }
  .news__list .news-label {
    margin-left: 0.625rem; /*10px*/
  }
}
/* ニュース
********************************************** */
.news__content {}
.news__content .news__date {
  margin-bottom: 1.875rem;
}
/* お問い合わせ
********************************************** */
.contact__content {}
.contact__list {}
.contact__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1.875rem 0; /*30px*/
  border-top: 1px solid var(--bor-color-bluegray);
}
@media screen and (max-width: 550px) {
  .contact__list li {
    padding: .938rem .5rem; /*15px 8px*/
  }
}
/*
.contact__list li:nth-child(5) {
  border-bottom: 1px solid var(--bor-color-bluegray);
}
*/
.contact__list .label {
  width: 100%;
  max-width: 248px;
  font-weight: 700;
}
@media screen and (max-width: 550px) {
  .contact__list .label {
    display: flex;
    align-items: center;
  }
}
.label-required {
  display: inline-block;
  width: 48px;
  padding: .25rem 0;
  margin-right: .5rem;
  border-radius: 3px;
  background: var(--color-theme);
  font-size: 14px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 550px) {
  .label-required {
    width: 32px;
    font-size: 10px;
  }
}
select {}
.form-select {
  flex: 1;
  width: 100%;
  max-width: 410px;
  height: 48px;
  padding: 0 1rem;
  margin-left: 2.5rem; /*40px*/
  border: 1px solid var(--bor-color-bluegray);
  border-radius: 3px;
  background: var(--color-lightblue);
}
.form-input {
  flex: 1;
  width: 100%;
  max-width: 410px;
  height: 48px;
  padding: 0 1rem;
  margin-left: 2.5rem; /*40px*/
  border: 1px solid var(--bor-color-bluegray);
  border-radius: 3px;
  background: var(--color-lightblue);
}

@media screen and (max-width: 550px) {
  .form-select {
    flex: inherit;
    margin-top: 1.25rem; /*20px*/
    margin-left: 0;
    height: 40px;
  }
  .form-input {
    flex: inherit;
    margin-top: 1.25rem; /*20px*/
    margin-left: 0;
    height: 40px;
  }
}
.form-input.input2 {
    flex:none;
    width: 100px !important;
    margin-right: 1em;
    vertical-align: baseline;
    margin-top: 0;
}
.form-textarea {
  flex: 1;
  width: 100%;
  max-width: 410px;
  height: 216px;
  margin-left: 2.5rem; /*40px*/
  padding: 1rem;
  border: 1px solid var(--bor-color-bluegray);
  border-radius: 3px;
  background: var(--color-lightblue);
}

.form-radio {
    -webkit-appearance: auto; /* 1 */
  appearance:auto;
  color: #000;
  padding: 0;
  margin: 10px;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

@media screen and (max-width: 550px) {
  .form-textarea {
    margin-top: 1.25rem; /*20px*/
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.form-btn--main {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 1.25rem 0;
  margin: 2rem auto 0 auto;
  border-radius: 3px;
  background: var(--color-button);
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: .6s;
}
.form-btn--main:hover {
  background: var(--color-button-darken);
}
.form-btn--sub {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 1.25rem 0;
  margin: 2rem auto 0 auto;
  border-radius: 3px;
  background: #999;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: .6s;
}
.form-btn--sub:hover {
  background: #555;
}
@media screen and (max-width: 550px) {
  .form-btn--main {
    max-width: 160px;
    padding: .625rem 0; /*10px*/
    margin-top: 1.5rem;
    font-size: 16px;
  }
  .form-btn--sub {
    max-width: 160px;
    padding: .625rem 0; /*10px*/
    margin-top: 1.5rem;
    font-size: 16px;
  }
}
input:focus, textarea:focus {
  outline: none;
}
/* ヘッダー
********************************************** */
.header {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100px;
  z-index: 999;
}
.header.fixed {
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}
.header.normal {
  position: absolute;
  z-index: 100;
  display: block;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 7.5rem 0 1.875rem; /*0 120px 0 30px*/
}
.header__inner h1 img {
  max-width: 200px
}
.current--parent .header.normal {
  position: fixed;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}
.current--parent .header.normal a {
  color: inherit;
}
.current--parent .header.normal a:hover {
  color: #253298;
  transition: .3s;
}
@media screen and (max-width: 960px) {
  .header {
    height: 60px;
  }
  .header__inner {
    height: 60px;
    padding: 0 0 0 0.938rem; /*0 0 0 15px*/
  }
  .header__inner h1 img {
    max-width: 150px
  }
}
/* グローバルナビゲーション
********************************************** */
.global__navi {
  display: flex;
  gap: 30px;
  font-weight: 700;
  user-select: none;
}
.header.normal a {
  color: #fff;
  transition: .8s;
}
.global__navi a:hover {
  color: var(--color-theme);
}
@media screen and (max-width: 960px) {
  .global__navi {
    display: none;
  }
}
/* バーガーメニュー
********************************************** */
/*.burger-menu__content {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 999;
  display: flex;
  width: 100%;
  height: 100vh;
  background: var(--color-theme);
  transition: all .6s;
}*/
/* アクティブクラスがついたら位置を0に 
.burger-menu__content.panelactive {
  right: 0;
}
*/

.burger-menu__content {
  position: fixed;
  top: 0;
    right: -120%;
  z-index: 999;
  display: flex;
  width: 100%;
  height: 100vh;
  background: var(--color-theme);
  transition: all .0s;
}
/* アクティブクラスがついたら位置を0に */
.burger-menu__content.panelactive {
    right: 0;
     transition: all .6s;
}


/* ナビゲーションの縦スクロール */
.burger-menu__content.panelactive {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /* 以下ナビの数が増えた場合縦スクロール */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.burger-menu__content h1 {
  display: inline-block;
  margin: 0 auto;
  padding: 6rem;
}
.burger-menu__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.burger-menu__list li {
  border-bottom: 1px solid #818dce;
}
.burger-menu__list li:first-child {
  border-top: 1px solid #818dce;
}
.burger-menu__list a {
  display: block;
  padding: 1.25rem;
  font-size: clamp(1.125rem, 0.917rem + 0.44vw, 1.25rem); /*18px～20px　w750-w1200*/
  color: #fff;
  transition: .6s;
}
.burger-menu__list a:hover {
  opacity: 0.6;
}
/* バーガーボタン */
.burger-menu__btn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1rem;
  right: 3rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  user-select: none;
}
.burger-menu__btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #ccc;
  width: 100%;
}
.burger-menu__btn span:nth-of-type(1) {
  top: 50px;
}
.burger-menu__btn span:nth-of-type(2) {
  top: 10px;
}
.burger-menu__btn span:nth-of-type(3) {
  top: 30px;
}
.burger-menu__btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.burger-menu__btn.active span:nth-of-type(2) {
  opacity: 0;
}
.burger-menu__btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
@media screen and (max-width: 960px) {
  .burger-menu__btn {
    top: 10px;
    right: 1.875rem; /*30px*/
    width: 30px;
    height: 30px;
  }
  .burger-menu__btn span:nth-of-type(1) {
    top: 30px;
  }
  .burger-menu__btn span:nth-of-type(2) {
    top: 10px;
  }
  .burger-menu__btn span:nth-of-type(3) {
    top: 20px;
  }
}
/* 重要なお知らせ
********************************************** */
.imp__banner {
  margin: 3.75rem auto; /*60px*/
    text-align: center;
    max-width: 1000px;
    width: 90%;
}
.imp__banner img {
  width: 100%;
  height: auto;
    
}
.imp__banner a {}
.imp__banner a img:hover {
  opacity: 0.6;
  transition: .6s;
}
section.imp {}
.imp__content {
  padding: 1.875rem 5.625rem; /*30px 90px*/
  border: solid 1px var(--bor-color-bluegray);
  border-radius: 10px;
  background: #fff;
}
.imp__content .news__date time {
  margin-bottom: 1.25rem; /*20px*/
}
.imp__content h2 {
  margin-bottom: 1.25rem; /*20px*/
  font-weight: bold;
  text-align: center;
  color: var(--color-accent);
}
.imp__content h3 {
  margin-bottom: 1.25rem; /*20px*/
  font-size: clamp(1.25rem, 0.833rem + 0.89vw, 1.5rem); /*20px～24px　w750-w1200*/
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  color: var(--color-accent);
}
.imp__content p {
  color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .imp__banner {
    margin-bottom: 1.875rem; /*30px*/
  }
  .imp__content {
    padding: 1.875rem 1.875rem; /*30px 45px*/
  }
}
/* ニュース/TOPページ
********************************************** */
.homeNews__list {}
.homeNews__list li {
  border-bottom: 1px solid #e6e6e6;
}
.homeNews__list li:first-child {
  border-top: 1px solid #e6e6e6;
}
.homeNews__list li a {
  position: relative;
  display: flex;
  /*padding: 1.875rem .5rem; 30px 8px*/
  transition: .6s;
}
.homeNews__list li a:hover {
  opacity: .7;
}
.homeNews__list.news2 {
    margin: 0 auto;
    max-width: 900px;
}
.homeNews__list.news2 li{
     position: relative;
  display: flex;
  padding: 1.35rem 3.5rem; /*30px 8px*/
  transition: .6s;
}
@media all and (max-width:480px) {
    .homeNews__list.news2 li{ padding: 1.35rem 0.5rem; /*30px 8px*/ }
}
/*.homeNews__list li a::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2rem;
  height: .5rem;
  background: #929292;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  transition: transform .3s;
}*/
/*hoverした際の矢印移動
.homeNews__list a:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}
.homeNews__list li a:hover {
  background: #f2f2f2;
}*/
.homeNews__list .news__date {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.homeNews__list.news2 .news__date {
    margin-right: 3rem;
    font-weight: bold;
    width: 7em;
    
}
.homeNews__list.news2 p {
    width: 80%;
}
.homeNews__list time {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
}
.news-label {
  min-width: 3.75rem; /*60px*/
  padding: .313rem 0; /*5px*/
  margin-left: 1rem; /*16px*/
  border: 1px solid var(--color-theme);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-theme);
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .homeNews__list li a::after {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .homeNews__list li a {
    flex-direction: column;
    padding: 1rem 0.125rem; /*16px 8px*/
  }
  .news__date {
    margin-right: 0;
    margin-bottom: 0.125rem;
  }
  .news-label {
    margin-left: 0.625rem; /*10px*/
  }
}
/* 弊社の強み
********************************************** */
section.advantage {}
.advantage .advantage01, .advantage .advantage02, .advantage .advantage03 {
  display: flex;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 500px;
}
.advantage .advantage01 {
  background-image: url(../images/top/advantage01_bg.jpg);
}
.advantage .advantage02 {
  background-image: url(../images/top/advantage02_bg.jpg);
  justify-content: flex-end;
}
.advantage .advantage03 {
  background-image: url(../images/top/advantage03_bg.jpg);
	background-position: 10% bottom;
}
.advantage .textArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 670px;
  height: 100%;
}
.advantage .textArea .ruby--en {
  color: #fff;
}
.advantage .textArea .ruby--en::before {
  background: #fff;
}
.advantage .textArea h3 {
  margin-bottom: 1.85rem; /*30px*/
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
    font-size: 1.5em;
}
.advantage .textArea h3 strong {
    font-size: 1.55em;
    display: block;
    font-style: italic;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.advantage .textArea p {
  color: #fff;
}
.advantage .advantage01 .textArea {
  padding: 0 10rem 0 5rem; /*0 160px 0 80px*/
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  background: var(--color-theme);
}
.advantage .advantage02 .textArea {
  padding: 10rem 5rem 10rem 10rem; /*160px 80px 160px 160px*/
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: var(--color-accent);
}
.advantage .advantage03 .textArea {
  padding: 0 10rem 0 5rem; /*0 160px 0 80px*/
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  /*background: var(--color-theme);*/
	background: #000;
}
.advantage .btn--sub {
    color: #fff;
}
.advantage .btn--sub span:nth-of-type(2) {
     background-color: #A5A5A5;
}
.advantage .btn--sub:hover span:nth-of-type(1) {
  color:#FFF09F;
}
.advantage .btn--sub:hover span:nth-of-type(2) {
  background: #ccc;
}

@media screen and (max-width: 550px) {
  .advantage .advantage01, .advantage .advantage02 {
    /*height: 100vh;*/
    height: 430px;
  }
  .advantage .textArea h3 {
    margin-bottom: 1.25rem; /*20px*/
  }
  .advantage .advantage01 .textArea {
    padding: 0 2.5rem; /*0 40px*/
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  .advantage .advantage02 .textArea {
    padding: 0 2.5rem; /*0 40px*/
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
	  .advantage .advantage03 .textArea {
    padding: 0 2.5rem; /*0 40px*/
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* 運送拠点
********************************************** */
section.base {}
.base .ttl--main + .lead-xxs {
  margin-bottom: 3.125rem; /*50px*/
  text-align: center;
}
.base__content {
  padding-top: 55%;
  background: url("../images/top/base_bg01.png") no-repeat center center / cover;
}
.base__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.5rem; /*40px*/
}
.base__list::after {
  content: "";
  display: block;
  width: calc(33.33% - 20px);
}
.base__list li {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 20px); /*アイテム間隔30px*/
  height: auto;
}
.base__list li:nth-of-type(n+4) {
  margin-top: 2.5rem; /*40px*/
}
.base__list h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.125rem, 0.917rem + 0.44vw, 1.25rem); /*18px～20px　w750-w1200*/
  min-height: 0vw;
  font-weight: 700;
}
.base__list .g-map {
  width: 100%;
  position: relative;
  padding-top: 50%;
  margin: 1rem auto 1rem auto;
}
.base__list .g-map-img {
  width: 100%;
  position: relative;
  padding-top: 0%;
  margin: 1rem auto 1rem auto;
}
.base__list .g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
@media screen and (max-width: 767px) {
  .base .ttl--main + .lead-xxs {
    margin-bottom: 1.25rem; /*20px*/
  }
  .base__list {
    margin-top: 0;
  }
  .base__list li {
    width: 49%;
    margin-top: 1.25rem; /*20px*/
  }
  .base__list li:nth-of-type(n+3) {
    margin-top: 1.25rem; /*20px*/
  }
  .base__list h2 {
    margin-bottom: .25rem;
  }
}
@media screen and (max-width: 550px) {
  .base__content {
    padding-top: 84%;
    background: url("../images/top/base_bg01_sp.png") no-repeat center center / cover;
  }
  .base__list {
    flex-direction: column;
  }
  .base__list li {
    width: 100%;
  }
}

/* レンタカー事業
********************************************** */
.rental-car-shop ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    width: 95%;
    align-items: stretch !important;
}
.rental-car-shop li {
    width: calc(25% - 20px);
    border-left: 0.5em solid #ccc;
    box-sizing: border-box;
    padding-left: 10px;
    margin-bottom: 50px;
    min-width: 300px;
}
.rental-car-shop ul::before{
  content:"";
  display: block;
  width:25%;
  order:1;
}
.rental-car-shop ul::after{
  content:"";
  display: block;
  width:25%;
}
.rental-car-shop li h2 {
    color: var(--color-theme);
    font-weight: bold;
    font-size: 1.1rem;
}
.rental-car-shop li a {
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .rental-car-shop ul {
        background-image: none;
    }
    .rental-car-shop li {
        width: 45%;
        min-width: 0;
            
    }
    .rental-car-shop li p span{
        letter-spacing: -0.05em !important;
    }
}

/* 会社情報
********************************************** */
section.company {}
.company__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company__content a {
  display: flex;
  flex-direction: column;
  width: calc(25% - 20px); /*アイテム間隔30px*/
  height: auto;
  text-align: center;
}
/*以下最終アイテム左寄せ
.company__content a::after {
  content: "";
  display: block;
  width: calc(33.33% - 20px);
}*/
.company__content a .imageArea {
  position: relative;
}
.company__content a .imageArea::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  aspect-ratio: 3 / 2;
}
.company__content a:nth-of-type(n+5) {
    margin-top: 2.5rem;
  }

.greeting__content .imageArea2 {
    width: 60%;
}
.company__content a .textArea {
  flex-grow: 1; /*子要素の高さ調整のための指定*/
  padding-top: 1rem;
}
.company__content a .textArea h2 {
  font-size: clamp(1.25rem, 0.833rem + 0.89vw, 1.5rem); /*20px～24px　w750-w1200*/
  min-height: 0vw;
}
.company__content a:hover h2 {
  color: var(--color-theme);
}
.company__content img {
  transform: scale(1);
  transition: .3s ease-in-out;
}
.company__content a:hover img {
  transform: scale(1.2);
}
p.aisatu {
    font-size: 1.8rem;
    margin:0 0 0 !important;
}
@media screen and (max-width: 767px) {
  .company__content a {
    width: 49%;
  }
  .company__content a:nth-of-type(n+3) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 550px) {
  .company__content {
    flex-direction: column;
  }
  .company__content a {
    width: 100%;
  }
  .company__content a:nth-of-type(n+2) {
    margin-top: 2.5rem;
  }
  .company__content a .textArea {
    padding-top: 1rem;
    text-align: center;
  }
}
/* スポーツ振興事業
********************************************** */
.sports__content {
  display: flex;
  justify-content: space-around;
    max-width: 980px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
}



.sports__content .border {
    width: 1px;
  background: #e6e6e6;
}


.sports__content .textArea {
    width: 25%;
    padding:0 20px;
    box-sizing: border-box;
}
.sports__content .logo {
    width: 45%;
}

.sports__content h4 {
    font-size: 1.2em;
    font-weight: bold;
}
.sports__content .textArea p {
    line-height: 1.5;
    font-size: 0.9em;
    letter-spacing: normal;
    margin-top: 10px;
}
.sports__content .textArea p span {
    font-size: 1.2em;
}


.sports__content .textArea img{
    width:100%;
    display: block;
    margin: 0 auto;
    padding: 0;
}

@media all and (max-width:767px) {
   
    .sports__content .sports {
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 20px;
    }
    .sports__content .textArea img {
        width: 50%;
    }
    .sports__content .logo img {
        width: 70%;
    }
    .sports__content .textArea {
        display: block;
        width: 100% !important;
        margin-bottom: 40px;
    }
    .sports__content .textArea p {
        text-align: center;
    }
}

/* CTA
********************************************** */
section.cta {}
.cta__content {
  display: flex;
  justify-content: space-between;
}
.cta__content:before {
  align-self: stretch;
  content: "";
  width: 1px;
  background: #e6e6e6;
}
.cta__content .textArea {}
.cta__content .textArea:first-child {
  order: -1;
}
.cta__content .textArea h2, .cta__content .textArea p {
  text-align: center;
}
.cta__content .textArea h2 {
  margin-bottom: 1.25rem; /*20px*/
  font-weight: 700;
  color: var(--color-theme);
}
.cta__content .textArea h2 > span {
  display: block;
  padding-left: 1.6rem;
  font-size: 14px;
  font-weight: normal;
  color: #202020;
}
.cta__content .textArea .btn--main {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .cta__content {
    flex-direction: column;
  }
  .cta__content .textArea:first-child {
    margin-bottom: 1.25rem;
  }
  .cta__content .textArea h2 {
    margin-bottom: 0.625rem; /*10px*/
  }
  .cta__content .textArea .btn--main {
    width: 100%;
    margin-left: 0;
  }
}

/* footer
********************************************** */
footer {
  padding: 1.875rem 0; /*30px*/
}
footer.footer {
  border-top: 1px solid #e6e6e6;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  width: 50%;
}
.footer__logo h1 {
  max-width: 200px;
  margin-right: 1.875rem; /*30px*/
}
.footer__logo h1 img {
  width: 100%;
  height: auto;
}
.footer__logo p {
  display: inline-block;
}
.footer__navi {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer__navi li:not(:last-child) {
  margin-right: 1rem;
}
.footer__navi li a {
  font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem); /*14px～16px　w750-w1200*/
  transition: .6s;
}
.footer__navi li a:hover {
  color: #999;
}
.copyright {
  display: block;
  flex-grow: 1;
  width: 100%;
  font-size: 12px;
  color: #999;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .footer .footer__inner {
    flex-direction: column;
  }
  .footer__logo {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 550px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__logo h1 {
    margin-bottom: 1.25rem; /*20px*/
  }
}
/*pageTop*/
.pageTop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--color-theme);
  transition: .3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
  user-select: none;
  cursor: pointer;
}
.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}
/* Fv
********************************************** */
section.fv {
  padding: 0 !important;
}
.splide {
  z-index: 0;
}
.splide__container {
  position: relative;
}
.splide__arrow > svg {
  display: none;
}
.fv .splide__pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  height: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fv .splide__pagination__page {
  display: block;
  width: .938rem; /*15px*/
  height: 2px;
  cursor: pointer;
  transition: var(--transition);
  background-color: #fff;
}
.fv .splide__pagination > li:not(:first-child) {
  margin-top: .938rem; /*15px*/
}
.fv .splide__pagination__page.is-active {
  width: 1.875rem; /*30px*/
  background-color: var(--color-theme);
}
.fv .splide__track--fade .splide__slide {
  pointer-events: none;
}
.fv .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.fv .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  /*padding: 0 5rem; 80px*/
  /*padding: 0 2.5rem;*/
  padding: 0 2.5rem 6rem 2.5rem;
}
.fv .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 7s 1s linear;
  transform: translateX(-1.5%) scale(1.1);
}
.fv .slide-title, .fv .slide-text, .fv .slide-link, .fv .slide-banner {
  animation: 2s var(--easing) both;
  opacity: 0;
}
.slide-title {
  margin-bottom: 1vh;
  font-family: var(--font-Roboto);
  font-size: clamp(2.25rem, 0.825rem + 7.12vw, 5.375rem); /*36px～140px　w750-w1920*/
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}
.slide-title img {
  width: 100%;
  height: auto;
}
.slide.third .slide-title img {
  max-width: 860px;
}
.slide-text {
  font-size: clamp(1.25rem, 0.128rem + 2.39vw, 2.5rem); /*20px～48px　w750-w1920*/
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}
.slide-text span {
    display: inline-block;
}
.slide-banner {
  position: absolute;
  right: 5%;
  bottom: 5%;
  max-width: 180px;
  z-index: 300;
}
.slide-banner img {
  width: 100%;
  height: auto;
  transition-duration: .4s;
}
.slide-banner img:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .fv .brPc {
    display: block;
  }
  .fv .brTb {
    display: none;
  }
  .fv .brSp {
    display: none;
  }

}
@media screen and (max-width: 767px) {
  .fv .brPc {
    display: none;
  }
  .fv .brTb {
    display: block;
  }
  .fv .brSp {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .fv .brPc {
    display: none;
  }
  .fv .brTb {
    display: block;
  }
  .fv .brSp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .fv .slide {
    height: max(80vh, 80vw);
  }
}
@media screen and (max-width: 800px) {
  .slide-banner {
      position: relative;
      margin: 60px 0 -80px 10%;
      width: 90%;
      max-width: none;
  }
    .slide-banner picture >* {
        display: block;
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }
   
}
.fv .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: translateX(1.5%) scale(1.05);
}
.fv .splide__slide.anm-started .slide-title, .fv .splide__slide.anm-started .slide-text, .fv .splide__slide.anm-started .slide-link, .fv .splide__slide.anm-started .slide-banner {
  animation-name: fv-fadeIn;
}
.fv .splide__slide.anm-finished .slide-title, .fv .splide__slide.anm-finished .slide-text, .fv .splide__slide.anm-finished .slide-link, .fv .splide__slide.anm-finished .slide-banner {
  animation-name: fv-fadeOut;
}
@keyframes fv-fadeIn {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fv-fadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-6rem);
    opacity: 0;
  }
}

/*  採用情報　*/
.recuit-form-btn {
    padding: 20px 0;
    text-align: center;
    margin: 40px 0;
}
span.link-thats-r {
    font-weight: normal;
    font-size: 1.3rem;
    margin-left: 90px;
    display: inline-block;
}
span.link-thats-r a {
    font-weight: bold;
    color: #0C039A;
    text-decoration: underline;
    font-size: 1.1em;
}
span.link-thats-r a:hover {
    opacity: 0.7;
}
@media all and (max-width:1199px) {
    span.link-thats-r {
        margin-left: 0;
        margin-top: 8px;
    }   
}

/* Loading Block */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  
  border-radius: 100%;
/*  animation: sk-scaleout 1.0s infinite ease-in-out; */
     animation: sk-scaleout 1s 1 ease-in-out;
    animation-fill-mode:forwards
    
}
.spinner img {
    margin: 40vh auto 0;
    display: block;
    max-width: 600px;
    width: 90%;
    
}
/* Loading Animation */
@keyframes sk-scaleout {
  0% {
      transform: scale(0.6);
      opacity: 1;
      
  } 50% {
      transform: scale(1);
    opacity: 1;
  }

    100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hide Loading Block */
.loaded {
  opacity: 0;
  visibility: hidden;
}



