@charset "utf-8";

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

  基本設定

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

/* ベース
------------------------------------------- */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: .6s;
}

*:hover {
  transition: .6s;
}

html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size : 1em;
  line-height: 160%;
  color: #333333;
  padding: 0;
  margin: 0;
}
  @media screen and (max-width : 768px) { /* スマホ */
    html {
      font-size: calc( 12px + 0.25vw ) !important;
    }
  }

body {
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 1rem;
}
@media screen and (max-width : 768px) { /* スマホ */
  body {
    font-size: 4vw;
    line-height: 1.75em;
  }
}

main {
  display: block;
}

ul, ol {
  list-style : none;
  margin: 0;
  padding: 0;
}

hr {
  display:block;
  width: 100%;
  height: 1px;
  border: 0;
  border-top: 1px dashed #cccccc; 
}

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  line-height: 1.5em;
}

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


/* a リンク
-------------------------------------------------------- */
a {
  text-decoration : none;
  color: #333333;
  border: none;
  outline: none;
}


/* MS transition 無効化 */
@supports (-ms-ime-align:auto) {
  a,
  a img {
    transition: none;
  }
  a:hover,
  a img:hover {
    transition: none;
  }
}

/* 電話リンク表示無効化 */
a[href^="tel:"] { cursor: default; }


/* レスポンシブ
-------------------------------------------------------- */
@media print, screen and (min-width : 960px) { /* PC */
  .nonepc { display: none !important; }
  .brsmp { display: none !important; }
  .wrap {
    max-width: 1200px;
    min-width: 980px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  .nonesmp { display: none !important; }
  .brpc { display: none !important; }
  .wrap {
    width: 86%;
    margin: 0 auto;
  }
}


/* フェード出現
-------------------------------------------------------- */
body {
  animation-name: fadein;
  animation-duration: 2s;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

  共通 > ヘッダー

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

/* header PC
-------------------------------------------------------- */

@media print, screen and (min-width : 960px) { /* PC */

  /* 共通項 */
  .home .header_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 30%;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, transparent, rgba(00,00,00,0.9));
    background: -webkit-linear-gradient(top, transparent, rgba(00,00,00,0.9));
    background: linear-gradient(to bottom, transparent, rgba(00,00,00,0.9));
  }
  .header_inner nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .header_inner nav {
    position: relative;
  }
  .header_inner nav ul li:last-child {
    position: absolute;
    z-index: 1;
    left: 1px;
    bottom: 0;
    width: 3.5em;
    height: calc(3.5em + 1px);
    margin-left: -3.5em;
    transition: 0s !important;
  }
  .header_inner nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*width: max-content;*/
    height: 3.5em;
    position: relative;
    z-index: 1;
    margin-top: auto;
  }
  .header_inner nav ul li {
    height: 100%;
  }
  .header_inner nav ul li a {
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
    background: #003a85;
    border-left: 1px solid #003a85;
    border-right: 1px solid #003a85;
    display: flex;
    align-items: center;
    padding: 0 1em;
    height: 100%;
  }
  .header_inner nav ul li a:hover {
    color: rgba(255,255,255,0.5);
  }


  /* トップページ固定ヘッダ・下層ページ固定ヘッダ */
  .header_inner nav.is-fixed {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
  }
  .header_inner nav.is-fixed:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: #003a85;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header_inner nav.is-fixed ul li:last-child {
    transform: scale(1, -1);
    transition: 0s !important;
  }

  /* トップページのみ */
  .div_title {
    /*width: 18%;*/
    width: 15.5%;
    max-width: 250px;
    height: 100%;
    /*background: rgba(19,116,187,0.8);*/
    background: rgba(19,116,187,0.6);
    margin-left: 3%;
    position: relative;
    z-index: 1;
    border-bottom: 14px solid #003a85;
  }
  .div_title div {
    position: absolute;
    left: 1rem;
    bottom: 2rem;
    width: 30vw;
    max-width: 450px;
  }
  .div_title div h1 img {
    display: block;
    width: 70%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ffffff;
  }
  .div_title div h1 span {
    font-size: 0.9rem;
    line-height: 1.5em;
    color: #ffffff;
  }
  body.home header {
    width: 100%;
    height: 100vh;
    border-bottom: 14px solid #003a85;
    overflow: hidden;
    position: relative;
  }
  body.home header img.scroll {
    position: absolute;
    z-index: 9999;
    left: 50%;
    bottom: 1.5rem;
    width: 7vw;
    margin-left: -3.5vw;
    animation: scrollanime 2s linear infinite;
  }
    @keyframes scrollanime {
      0% { transform: translateY(0) }
      33.33333% { transform: translateY(-10px) }
      66.66667% { transform: translateY(0) }
      100% { transform: translateY(0) }
    }
  body.home .header_inner {
    display: flex;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
  }
  body.home header.is-fixed .header_inner {
    position: initial;
  }
  body.home .header_inner nav {
    margin-top: auto;
  }
}


/* header Smartphone
-------------------------------------------------------- */

@media screen and (max-width : 768px) { /* スマホ */
  header {
    position: relative;
  }
  .home .header_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 30%;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, transparent, rgba(00,00,00,0.9));
    background: -webkit-linear-gradient(top, transparent, rgba(00,00,00,0.9));
    background: linear-gradient(to bottom, transparent, rgba(00,00,00,0.9));
  }
  header .header_inner h1 a {
    display: block;
  }
  header .header_inner h1 a img {
    width: 100%;
  }
  header nav {
    display: none;
    position: fixed;
    top:0;
    width: 100%;
    height: 100vh;
    color: #ffffff;
    background-color:rgba(0,58,133,0.95);
    left: 0;
    z-index: 1000;
    transition: none;
  }
  header nav ul{
    margin: 0 auto;
    padding-top: 10vh;
    width: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    line-height: 1em;
  }
  header nav ul li:last-child{
    display: none;
  }
  header nav ul li a {
    font-size: 4.5vw;
    width: 100%;
    color: #ffffff;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  header nav ul li a:hover {
    background: #609b14;
  }
  header nav ul li a span {
    border-left: 0;
    color: #8dc21f;
    padding: 0.5rem 0 0 0;
    font-size: 4vw;
  }

  /*開閉ボタン*/
  #nav_toggle{
    position: fixed;
    z-index: 9999;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12vw;
    height: 12vw;
    padding: 1rem 0;
    background: rgba(19,116,187,0.8);
  }
  body.home #nav_toggle {
    background: transparent;
  }
  body.home #nav_toggle.is-animation {
    background: rgba(19,116,187,0.8);
  }
  #nav_toggle div:after {
    content: "MENU";
    position: absolute;
    left: 0;
    bottom: 1em;
    width: 100%;
    display: block;
    font-weight: 500;
    line-height: 0;
    text-align: center;
    font-size: 2vw;
    color: #ffffff;
  }
  #nav_toggle span{
    display: block;
    height: 3px;
    background: #ffffff;
    position:absolute;
    width: 80%;
    left: 10%;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: .2s;
  }
  #nav_toggle span:nth-child(1){
    top:7px;
  }
  #nav_toggle span:nth-child(2){
    top:15px;
  }
  #nav_toggle span:nth-child(3){
    top:23px;
  }

  /*開閉ボタンopen時*/
  .open .is-animation {
    background: transparent !important;
  }
  .open #nav_toggle div:after {
    content: none;
  }
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
     -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: .2s;
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transition: .2s;
  }

  /* トップページのみ */
  .div_title {
    width: 18%;
    height: 100%;
    background: rgba(19,116,187,0.6);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 3%;
  }
  .div_title div {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 90vw;
  }
  .div_title div h1 img {
    display: block;
    width: 28%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ffffff;
  }
  .div_title div h1 span {
    font-size: 2.8vw;
    line-height: 1.5em;
    color: #ffffff;
  }
  body.home header {
    border-bottom: 10px solid #003a85;
  }
  body.home header img.scroll {
    display: none;
  }

}


/* トップページ用 ヘッダ背面スライダ
-------------------------------------------------------- */
.ul_topback {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: -1;
}
  @media screen and (max-width : 768px) { /* スマホ */
    .ul_topback {
      height: 40%;
      overflow: hidden;
    }
  }
.ul_topback li {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index:10;
  -webkit-animation: anime 40s 0s infinite;
  animation: anime 40s 0s infinite;
}
.ul_topback li:nth-child(1) { 
  background-image: url(images/slide1.jpg?20220902);
}
.ul_topback li:nth-child(2) {
  background-image: url(images/slide2.jpg?20220902);
  -webkit-animation-delay: 10s;
  animation-delay: 10s
}
.ul_topback li:nth-child(3) {
  background-image: url(images/slide3.jpg?20220902);
  -webkit-animation-delay: 20s;
  animation-delay: 20s
}
.ul_topback li:nth-child(4) {
  background-image: url(images/slide4.jpg?20220902);
  -webkit-animation-delay: 30s;
  animation-delay: 30s
}
@keyframes anime {
    0% { opacity: 0;}
   12.5% { opacity: 1;}
   25% { opacity: 1;}
   37.5% { opacity: 0; transform: scale(1.1) rotate(0.1deg); z-index:9;}
  100% { opacity: 0 }
}


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

  共通 > フッター

----------------------------------------------------------------------------*/
footer {
  padding-top: 4.5rem;
  position: relative;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .wrap p {
  text-align: right;
  font-size: 0.9rem;
}
footer small {
  display: block;
  color: #ffffff;
  background: #003a85;
  padding: 0.5rem 0;
}
footer small span {
  display: block;
}

@media screen and (max-width : 768px) { /* スマホ */
  footer {
    padding-top: 3.5rem;
  }
  footer .wrap {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  footer .wrap h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  footer .wrap h1 img {
    width: 60%;
  }
  footer small span.wrap {
    margin-bottom: 0;
  }
}

/* pagetop */
.pagetop {
  position: absolute;
  z-index: 9999;
  right: 1.5rem;
  top: 0;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  background: rgba(19,116,187,0.8);
}
.pagetop a:hover {
  background: rgba(19,116,187,1);
}


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

  共通 > トップページ・下層ページ

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

/* 共通リンクボタン
-------------------------------------------------------- */
.linkbutton {
  display: inline-block;
  margin: 2rem 0;
  padding: 0.8rem 4rem;
  color: #ffffff;
  background: #003a85;
  border: 1px solid #003a85;
  border-radius: 0.25rem;
  text-align: center;
  position: relative;
}
a.linkbutton:hover{
  background: #1374bb;
  border: 1px solid #1374bb;
}

@media print, screen and (min-width : 960px) { /* PC */
  a[href^="tel:"]:hover { background: #003a85; }
}
@media screen and (max-width : 768px) { /* スマホ */
  .linkbutton {
    display: flex;
    justify-content: center;
    margin: 2rem 1rem;
    padding: 1.25em 0;
    font-size: 4.5vw;
  }
}


/* セクションタイトル
-------------------------------------------------------- */
.sec_h1 {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sec_h2 {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.2em;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #333333;
}
.h1_blue,
.h2_blue {
  color: #1374bb;
}
.h1_jp,
.h2_jp {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.5em;
}
.p_lead {
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media screen and (max-width : 768px) { /* スマホ */
  .h2_jp {
    font-size: 5vw;
  }
}

/* セクション背景
-------------------------------------------------------- */
.triangle {
  content: "";
  display: block;
  width: calc(2rem + 1px);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  left: calc(50% - 1px);
  margin-left: -1rem;
  background: transparent;
}


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

  トップページ

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

/* .sec_aboutus
-------------------------------------------------------- */
.sec_aboutus {
  padding: 6vw 0;
  position: relative;
  border-bottom: 1px solid #ffffff;
}
.sec_aboutus:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #ffffff;
  border-left: 1px solid #ffffff;
}
.sec_aboutus .sec_h1 {
  border-bottom: 1px solid #333333;
}

@media print, screen and (min-width : 960px) { /* PC */
  .sec_aboutus .wrap {
    display: flex;
  }
  .sec_aboutus .wrap div {
    width: 50%;
    padding-right: 2rem;
  }
  .sec_aboutus .wrap figure {
    width: 50%;
  }
  .sec_aboutus .wrap figure img {
    width: 100%;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  .sec_aboutus {
    padding: 10% 0 15% 0;
  }
  .sec_aboutus .wrap figure {
    width: 90%;
    margin: 2rem auto 0 auto;
  }
  .sec_aboutus .wrap figure img {
    width: 100%;
  }
}


/* .sec_lineup
-------------------------------------------------------- */
.sec_lineup {
  color: #ffffff;
  background: #000000;
  padding: 9vw 0 6vw 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #000000;
}
.sec_lineup:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #000000;
  border-left: 1px solid #000000;
}
.sec_lineup .sec_h1 {
  border-bottom: 1px solid #ffffff;
}
.sec_lineup ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
}
.sec_lineup ul li {
  width: calc(100% / 5);
  padding: 0.25rem;
}
body.lineup .sec2 ul li:first-child {
  padding-left: 0;
}
body.lineup .sec2 ul li:last-child {
  padding-right: 0;
}
.sec_lineup ul li figure {
  width: 100%;
  position: relative;
}
.sec_lineup ul li figure img {
  width: 100%;
}

@media print, screen and (min-width : 960px) { /* PC */
  .sec_lineup ul li figure {
    text-align: center;
  }
  .sec_lineup ul li figure figcaption {
    font-size: 0.9rem;
    display: block;
    width: 90%;
    color: #ffffff;
    background: rgba(19,116,187,0.9);
    margin: -1rem auto 0 auto;
    padding: 0.5rem 0.25rem;
    position: relative;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  .sec_lineup {
    padding: 20% 7% 15% 7%;
  }
  .sec_lineup ul {
    width: 100%;
  }
  .sec_lineup ul li {
    width: calc(100% / 2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .sec_lineup ul li figure {
    display: flex;
    flex-direction: column;
  }
  .sec_lineup ul li figure figcaption {
    font-size: 3.5vw;
    line-height: 1.5em;
    color: #ffffff;
    background: #1374bb;
    display: block;
    width: 90%;
    margin: -0.5rem auto 0 auto;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* .sec_contact
-------------------------------------------------------- */
.sec_contact {
  background: #efefef;
  padding: 9vw 0 7vw 0;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.sec_contact:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #efefef;
  border-left: 1px solid #efefef;
}
.sec_contact .sec_h1 {
  border-bottom: 1px solid #333333;
}
.sec_contact .wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.sec_contact .wrap figure img {
  width: 100%;
}
.sec_contact .linkbutton {
  padding: 0.8rem 2rem;
  margin-bottom: 0;
  margin-right: 1rem;
}

@media print, screen and (min-width : 960px) { /* PC */
  .sec_contact .wrap {
    width: 55%;
  }
  .sec_contact .wrap figure {
    width: 50%;
    margin: 0 1rem 0 -2rem;
  }
  .sec_contact .wrap div {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  .sec_contact {
    padding: 20% 0 15% 0;
  }
  .sec_contact .wrap {
    flex-direction: column;
  }
  .sec_contact .wrap figure {
    order: 2;
    width: 80%;
    margin: 0 auto 2rem auto;
  }
  .sec_contact .wrap div {
    order: 1;
    width: 100%;
    margin: 0 0 2rem 0 ;
    padding: 0 2rem;
  }
  .sec_contact .linkbutton {
    font-size: 4.5vw;
  }
  .sec_contact a.linkbutton {
    padding: 1.25em 0;
  }
  .sec_contact span.linkbutton {
    margin: 1rem !important;
    padding: 1.25em 0;
  }
}


/* .sec_title
-------------------------------------------------------- */
.sec_title {
  margin-bottom: 5rem;
}
.sec_title h1 {
  width: 30vw;
  max-width: 400px;
  padding: 2rem;
}
.sec_title h1 a {
  display: block;
}
.sec_title h1 a img {
  width: 100%;
}
.title_wrap {
  background: #efefef;
  position: relative;
}
.title_wrap:after {
  content: "";
  display: block;
  width: 13%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
}
.sec_title .wrap {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.sec_title .wrap div {
  width: 50%;
}
.sec_title .wrap figure img {
  width: 100%;
}

@media print, screen and (min-width : 960px) { /* PC */
  .sec_title .wrap figure {
    width: 55%;
    position: absolute;
    bottom: 0;
    right: -8%;
    margin-bottom: -2rem;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  .sec_title .wrap {
    flex-direction: column;
  }
  .sec_title .wrap div {
    width: 85%;
  }
  .sec_title h1 {
    width: 65vw;
  }
  .sec_title .wrap figure {
    width: 100%;
    margin: 2rem 0 0rem 0;
  }
}


/* .sec_page
-------------------------------------------------------- */
.sec_page .wrap {
  margin-bottom: 2rem;
}
.sec_page h3 {
  font-weight: bold;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
}
.sec_page h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #333333;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_page h3:after {
  content: "";
  display: block;
  width: 2.5em;
  height: 3px;
  background: #1374bb;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_page h3 span {
  color: #1374bb;
}
.sec_page p {
  margin-bottom: 1em;
}


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

  下層ページ

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

/* 会社概要ページ
-------------------------------------------------------- */
body.about .sec1 p:nth-of-type(2) {
  text-align: right;
}
body.about .sec1 {
  position: relative;
  padding: 0 0 6vw 0;
  border-bottom: 1px solid #ffffff;
}
body.about .sec1:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #ffffff;
  border-left: 1px solid #ffffff;
}
body.about .sec1 dl {
  display: flex;
  flex-wrap: wrap;
}
body.about .sec1 dl dt {
  width: 15%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
body.about .sec1 dl dd {
  width: 85%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
body.about .sec2 {
  padding: 6vw 0;
  color: #ffffff;
  background: #000000;
  position: relative;
  border-bottom: 1px solid #000000;
}
body.about .sec2:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #000000;
  border-left: 1px solid #000000;
}
body.about .sec2 ul li {
  margin-bottom: 2rem;
}
body.about .sec2 iframe {
  width: 100%;
}

@media print, screen and (min-width : 960px) { /* PC */
  body.about .sec1 dl dd ul {
    display: flex;
    flex-wrap: wrap;
  }
  body.about .sec1 dl dd ul li {
    width: 50%;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  body.about .sec1 dl {
    flex-direction: column;
  }
  body.about .sec1 dl dt {
    width: 100%;
    padding: 0.5rem 0 0 0;
    border-bottom: 0;
    font-weight: bold;
  }
  body.about .sec1 dl dd {
    width: 100%;
    padding: 0 1em 0.5rem 1em;
    border-bottom: 1px solid #cccccc;
  }
  body.about .sec2 {
    padding: 20% 0 15% 0;
  }
  body.about .sec2 iframe {
    height: 200px;
  }
}

/* プライバシーポリシー
-------------------------------------------------------- */
body.privacy .sec1 {
  position: relative;
  padding: 0 0 6vw 0;
  border-bottom: 1px solid #ffffff;
}
body.privacy .sec1:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #ffffff;
  border-left: 1px solid #ffffff;
}
body.privacy .sec2 {
  padding: 6vw 0;
  color: #ffffff;
  background: #000000;
  position: relative;
  border-bottom: 1px solid #000000;
}
body.privacy .sec2:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #000000;
  border-left: 1px solid #000000;
}
.p_privacy {
  font-size: 0.9rem;
  margin: 1rem 0;
  text-align: right;
}
.p_privacy a {
  color: #666666;
  border-bottom: 1px solid #666666;
}

@media print, screen and (min-width : 960px) { /* PC */
  body.privacy .sec_title .wrap div {
    width: 80%;
  }
  body.privacy .p_lead {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: bold;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  body.privacy .h2_jp {
    font-size: 4.5vw;
  }
  body.privacy .p_lead {
    font-size: 4vw;
  }
}


/* 車両情報ページ
-------------------------------------------------------- */
body.lineup .sec1 {
  position: relative;
  padding: 0 0 6vw 0;
  border-bottom: 1px solid #ffffff;
}
body.lineup .sec1:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #ffffff;
  border-left: 1px solid #ffffff;
}
body.lineup .sec1 figure {
  width: 90%;
  margin: 1rem auto;
}
body.lineup .sec1 figure img {
  width: 100%;
}
body.lineup .sec1 ul {
  display: flex;
  flex-wrap: wrap;
}
body.lineup .sec1 ul li {
  width: 49%;
  border-bottom: 1px solid #cccccc;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}
body.lineup .sec1 ul li span {
  font-weight: bold;
}
body.lineup .sec2 {
  padding: 6vw 0;
  color: #ffffff;
  background: #000000;
  position: relative;
  border-bottom: 1px solid #000000;
}
body.lineup .sec2:after {
  content: "";
  display: block;
  width: calc(50% - 1rem);
  height: 2rem;
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  right: 0;
  background: #000000;
  border-left: 1px solid #000000;
}
body.lineup .sec2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
}
body.lineup .sec2 ul li {
  width: calc(100% / 5);
  padding: 0.25rem;
}
body.lineup .sec2 ul li:first-child {
  padding-left: 0;
}
body.lineup .sec2 ul li:last-child {
  padding-right: 0;
}
body.lineup .sec2 ul li figure {
  width: 100%;
  position: relative;
}
body.lineup .sec2 ul li figure img {
  width: 100%;
}

@media print, screen and (min-width : 960px) { /* PC */
  body.lineup .sec1 ul.koriyama li {
    width: 100%;
  }
  body.lineup .sec1 ul li:nth-of-type(odd) {
    margin-right: 1%;
  }
  body.lineup .sec1 ul li:nth-of-type(even) {
    margin-left: 1%;
  }
  body.lineup .sec2 ul li figure {
    text-align: center;
  }
  body.lineup .sec2 ul li figure figcaption {
    font-size: 0.9rem;
    display: block;
    width: 90%;
    color: #ffffff;
    background: rgba(19,116,187,0.9);
    margin: -1rem auto 0 auto;
    padding: 0.5rem 0.25rem;
    position: relative;
  }
}
@media screen and (max-width : 768px) { /* スマホ */
  body.lineup .sec1 ul li {
    width: 100%;
  }
  body.lineup .sec2 {
    padding: 20% 0 15% 0;
  }
  body.lineup .sec2 ul {
    width: 100%;
  }
  body.lineup .sec2 ul li {
    width: calc(100% / 2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  body.lineup .sec2 ul li figure {
    display: flex;
    flex-direction: column;
  }
  body.lineup .sec2 ul li figure figcaption {
    font-size: 3.5vw;
    line-height: 1.5em;
    color: #ffffff;
    background: #1374bb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: -0.5rem auto 0 auto;
    padding: 0.5rem 0;
    position: relative;
    text-align: center;
  }
}




