@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

:root {
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Antialiasing ※任意　*/
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000000;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  text-decoration: underline;
}

p {
  font-size: 1.6rem;
}

.sp {
  display: none;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex.rev {
  flex-direction: row-reverse;
}
.flex.bottom {
  align-items: flex-end;
}

.no-shrink {
  flex: 0;
}

.flex-left {
  display: flex;
  justify-content: start;
}

.flex-vc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.bold {
  font-weight: 900;
}

.big150 {
  font-size: 150%;
}

.center {
  text-align: center;
}

/*-----float-----*/
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.cl_both {
  clear: both;
}

/*-----font-----*/
.fw_b {
  font-weight: bold;
}

.ta_r {
  text-align: right;
}

.ta_c {
  text-align: center;
}

.ta_l {
  text-align: left;
}

/* IE10以上 不要なら削除 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
.mt0 {
  margin-top: 0px;
}

.mr0 {
  margin-right: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pr0 {
  padding-right: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mr55 {
  margin-right: 55px;
}

.mb55 {
  margin-bottom: 55px;
}

.ml55 {
  margin-left: 55px;
}

.pt55 {
  padding-top: 55px;
}

.pr55 {
  padding-right: 55px;
}

.pb55 {
  padding-bottom: 55px;
}

.pl55 {
  padding-left: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.ml60 {
  margin-left: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pl60 {
  padding-left: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mr65 {
  margin-right: 65px;
}

.mb65 {
  margin-bottom: 65px;
}

.ml65 {
  margin-left: 65px;
}

.pt65 {
  padding-top: 65px;
}

.pr65 {
  padding-right: 65px;
}

.pb65 {
  padding-bottom: 65px;
}

.pl65 {
  padding-left: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.ml70 {
  margin-left: 70px;
}

.pt70 {
  padding-top: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pl70 {
  padding-left: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mr75 {
  margin-right: 75px;
}

.mb75 {
  margin-bottom: 75px;
}

.ml75 {
  margin-left: 75px;
}

.pt75 {
  padding-top: 75px;
}

.pr75 {
  padding-right: 75px;
}

.pb75 {
  padding-bottom: 75px;
}

.pl75 {
  padding-left: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.ml80 {
  margin-left: 80px;
}

.pt80 {
  padding-top: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pl80 {
  padding-left: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mr85 {
  margin-right: 85px;
}

.mb85 {
  margin-bottom: 85px;
}

.ml85 {
  margin-left: 85px;
}

.pt85 {
  padding-top: 85px;
}

.pr85 {
  padding-right: 85px;
}

.pb85 {
  padding-bottom: 85px;
}

.pl85 {
  padding-left: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.ml90 {
  margin-left: 90px;
}

.pt90 {
  padding-top: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.pl90 {
  padding-left: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mr95 {
  margin-right: 95px;
}

.mb95 {
  margin-bottom: 95px;
}

.ml95 {
  margin-left: 95px;
}

.pt95 {
  padding-top: 95px;
}

.pr95 {
  padding-right: 95px;
}

.pb95 {
  padding-bottom: 95px;
}

.pl95 {
  padding-left: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mr100 {
  margin-right: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml100 {
  margin-left: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl100 {
  padding-left: 100px;
}

/* clearfix */
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Margin-Center */
.ma-ce {
  margin-right: auto;
  margin-left: auto;
}

/* TextAlign */
.al {
  text-align: left;
}

.ar {
  text-align: right;
}

.ac {
  text-align: center;
}

/* Float */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

/* position */
.poa {
  position: absolute;
}

.rel {
  position: relative;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
  body {
    overflow-x: hidden;
    font-size: 1.6rem;
    background: none;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .flex {
    flex-direction: column;
  }
}
:root {
  --font-gothic:"Yu Gothic Medium", "游ゴシック Medium", yugothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --gradient-gold1:linear-gradient(90deg, rgba(146, 127, 40, 100%) 0.05%, rgba(149, 130, 38, 100%) 22.06%, rgba(159, 138, 34, 100%) 39.7%, rgba(169, 147, 29, 100%) 50%, rgba(170, 148, 31, 100%) 59.18%, rgba(173, 151, 38, 100%) 63.08%, rgba(178, 157, 51, 100%) 65.98%, rgba(185, 166, 68, 100%) 68.39%, rgba(195, 177, 91, 100%) 70.48%, rgba(206, 190, 120, 100%) 72.37%, rgba(220, 206, 153, 100%) 74.05%, rgba(229, 216, 175, 100%) 75%, rgba(207, 192, 144, 100%) 76.75%, rgba(181, 164, 106, 100%) 79.19%, rgba(162, 144, 79, 100%) 81.46%, rgba(150, 131, 63, 100%) 83.47%, rgba(146, 127, 57, 100%) 85%, rgba(148, 129, 59, 100%) 91.87%, rgba(153, 134, 66, 100%) 94.79%, rgba(163, 144, 79, 100%) 96.96%, rgba(176, 158, 96, 100%) 98.74%, rgba(190, 172, 114, 100%) 100%);
  --gradient-gold-btn:linear-gradient(0deg, rgba(146, 127, 40, 100%) 0%, rgba(148, 129, 43, 100%) 21.14%, rgba(154, 136, 53, 100%) 38.12%, rgba(165, 147, 70, 100%) 53.65%, rgba(179, 163, 94, 100%) 68.33%, rgba(198, 183, 125, 100%) 82.4%, rgba(221, 207, 162, 100%) 95.83%, rgba(229, 216, 175, 100%) 100%);
}

body {
  position: relative;
  z-index: 1;
  font-family: var(--font-gothic);
  font-feature-settings: "palt";
  transition: none;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
body.active {
  height: 100%;
  overflow: hidden;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

video {
  vertical-align: middle;
}

h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
}

p {
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
}

ul li {
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
}

.w740 {
  width: 100%;
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.w960 {
  width: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.annotation {
  font-size: 1.2rem;
  font-weight: 500;
}

.anchor {
  padding-top: 70px;
  margin-top: -70px;
}

.bg-wt-truck {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #646464;
  background-color: white;
  border: 1px solid #646464;
  border-radius: 100px;
}

.bg-gray-truck {
  padding: 6px 20px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-align: center;
  background: #4c4948;
  border-radius: 100px;
}

.bg-gradient-truck {
  padding: 7px 25px;
  font-size: 2rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.1em;
  background: linear-gradient(50% 0% -90deg, rgb(148, 148, 148) 0%, rgb(26, 26, 26) 100%);
  background: linear-gradient(-90deg, rgb(148, 148, 148) 0%, rgb(26, 26, 26) 100%);
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgb(148, 148, 148)), color-stop(1, rgb(26, 26, 26)));
  background: linear-gradient(-90deg, rgb(148, 148, 148) 0%, rgb(26, 26, 26) 100%);
  background: linear-gradient(-90deg, rgb(148, 148, 148) 0%, rgb(26, 26, 26) 100%);
  background: linear-gradient(180deg, rgb(148, 148, 148) 0%, rgb(26, 26, 26) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#949494', endColorstr='#1A1A1A' ,GradientType=0)";
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#949494",endColorstr="#1A1A1A" , GradientType=0);
  border-radius: 100px;
}

.btn-readmore {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  float: right;
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 1;
  transition: 0.3s ease;
}
.btn-readmore:hover {
  opacity: 0.5;
}
.btn-readmore::after {
  display: inline-block;
  float: right;
  width: 14px;
  height: 16px;
  content: "";
  background: url("../img/btn-arrow@2x.png") 0 0 no-repeat;
  background-size: contain;
}

.btn-bk {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 236px;
  max-width: 100%;
  padding: 10px 12px 10px 30px;
  font-size: 1.9rem;
  font-weight: 600;
  color: white;
  background-color: black;
  box-shadow: 4px 4px 0 0 rgb(178, 178, 178);
}
.btn-bk::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 25px;
  content: "";
  background: url("../img/btn-tag@2x.png") 0 0 no-repeat;
  background-size: contain;
}
.btn-bk div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.btn-bk div::after {
  display: inline-block;
  float: right;
  width: 14px;
  height: 16px;
  content: "";
  background: url("../img/btn-arrow-gray@2x.png") 0 0 no-repeat;
  background-size: contain;
}

.sup {
  font-size: smaller !important;
  vertical-align: super;
}

.upright {
  text-orientation: upright;
  text-orientation: upright;
}

.word-break {
  word-break: break-all;
}

.fadeinnow {
  opacity: 0;
  animation-name: fadein;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 0);
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shiny {
  0% {
    left: -60%;
  }
  100% {
    left: 230%;
  }
}
@keyframes shiny2 {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.shiny-btn {
  position: relative;
  display: block;
  overflow: hidden;
}
.shiny-btn:hover::after {
  position: absolute;
  top: -10%;
  left: -60%;
  width: 20px;
  height: 100%;
  content: "";
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  transform: scale(2) rotate(20deg);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.shiny-btn2:hover::after {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  content: "";
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  transform: scale(2) rotate(20deg);
  /* アニメーション */
  animation-name: shiny2;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: white;
}
.header img {
  display: block;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav {
  position: fixed;
  top: 0;
  right: -50%;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 375px;
  height: calc(45.3125vw + 70px);
  max-height: 100%;
  padding: 10px 20px 50px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  background-color: #8b8f90;
  transition: right 1s ease;
}
.nav.active {
  right: 0;
}
.nav .hamburger .hamburger-box .hamburger-inner {
  background-color: white;
}
.nav .hamburger .hamburger-box .hamburger-inner::before, .nav .hamburger .hamburger-box .hamburger-inner::after {
  background-color: white;
}
.nav .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}
.nav ul li {
  display: block;
  width: 170px;
  max-width: 100%;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #b3b3b3;
}
.nav ul li a {
  padding-bottom: 10px;
  font-size: 1.5rem;
  color: inherit;
}

.hamburger {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 7px;
  margin: 0;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
.hamburger img {
  display: block;
  margin: 0 auto;
}
.hamburger .hamburger-box {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 24px;
  transition: all 0.4s;
}
.hamburger .hamburger-box .hamburger-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 4px;
  margin-top: -2px;
  background-color: #949494;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
  transition-property: transform;
}
.hamburger .hamburger-box .hamburger-inner::before, .hamburger .hamburger-box .hamburger-inner::after {
  position: absolute;
  left: 0;
  display: block;
  width: 36px;
  height: 4px;
  content: "";
  background-color: #949494;
}
.hamburger .hamburger-box .hamburger-inner::before {
  top: -10px;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger .hamburger-box .hamburger-inner::after {
  bottom: -10px;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.active .hamburger-box .hamburger-inner {
  height: 0;
}
.hamburger.active .hamburger-box .hamburger-inner::before {
  top: 0;
  transition: top 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, opacity 75ms ease 0.12s;
  transform: scale(60%) rotateZ(45deg);
}
.hamburger.active .hamburger-box .hamburger-inner::after {
  bottom: -4px;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: scale(60%) rotateZ(-45deg);
}

.float-bnr {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 8888;
  display: none;
  pointer-events: none;
}
.float-bnr .flex-order {
  pointer-events: fill;
  transform: translateY(-50%);
}
.float-bnr .float-cv {
  position: relative;
  display: flex;
  margin-bottom: 15px;
  font-feature-settings: normal;
  line-height: 1;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.float-bnr .float-cv::after {
  position: absolute;
  top: 0;
  right: -3px;
  display: block;
  flex: 1;
  width: 3px;
  height: 100%;
  content: "";
  background: linear-gradient(128988.97% -283.41% 0deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  background: linear-gradient(0deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  background: -webkit-gradient(linear, 128988.97% -283.41%, 120322.31% -283.41%, color-stop(0.0005, rgb(146, 127, 40)), color-stop(0.2206, rgb(149, 130, 38)), color-stop(0.397, rgb(159, 138, 34)), color-stop(0.5, rgb(169, 147, 29)), color-stop(0.5918, rgb(170, 148, 31)), color-stop(0.6308, rgb(173, 151, 38)), color-stop(0.6598, rgb(178, 157, 51)), color-stop(0.6839, rgb(185, 166, 68)), color-stop(0.7048, rgb(195, 177, 91)), color-stop(0.7237, rgb(206, 190, 120)), color-stop(0.7405, rgb(220, 206, 153)), color-stop(0.75, rgb(229, 216, 175)), color-stop(0.7675, rgb(207, 192, 144)), color-stop(0.7919, rgb(181, 164, 106)), color-stop(0.8146, rgb(162, 144, 79)), color-stop(0.8347, rgb(150, 131, 63)), color-stop(0.85, rgb(146, 127, 57)), color-stop(0.9187, rgb(148, 129, 59)), color-stop(0.9479, rgb(153, 134, 66)), color-stop(0.9696, rgb(163, 144, 79)), color-stop(0.9874, rgb(176, 158, 96)), color-stop(1, rgb(190, 172, 114)));
  background: linear-gradient(0deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  background: linear-gradient(0deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  background: linear-gradient(0deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#927F28', endColorstr='#BEAC72' ,GradientType=0)";
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#927F28",endColorstr="#BEAC72" , GradientType=1);
}
.float-bnr .float-cv .inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  width: 116px;
  padding: 10px 11px 10px 33px;
  background: #646464;
  text-orientation: upright;
  text-orientation: upright;
}
.float-bnr .float-cv .inner.inner1 {
  padding-left: 11px;
  padding-bottom: 0;
}
.float-bnr .float-cv .inner.inner1 .underline {
  text-decoration: underline;
}
.float-bnr .float-cv .inner.inner1 .cv-btn:after {
  margin-right: 1.25em;
}
.float-bnr .float-cv .inner .cv-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 188px;
  padding: 12px 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(0deg, rgb(146, 127, 40) 0.05%, rgb(148, 129, 43) 21.18%, rgb(154, 136, 53) 38.15%, rgb(165, 147, 70) 53.68%, rgb(179, 163, 94) 68.35%, rgb(198, 183, 125) 82.41%, rgb(221, 207, 162) 95.84%, rgb(229, 216, 175) 100%);
  border-radius: 4px;
}
.float-bnr .float-cv .inner .cv-btn:hover {
  background: linear-gradient(0deg, rgb(168, 153, 83) 0%, rgb(168, 153, 83) 0.05%, rgb(170, 155, 86) 23.41%, rgb(176, 162, 96) 42%, rgb(186, 173, 113) 58.96%, rgb(201, 188, 137) 74.93%, rgb(219, 208, 167) 90.09%, rgb(234, 224, 191) 100%);
}
.float-bnr .float-cv .inner .cv-btn::after {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 10px;
  transform: none;
}
.float-bnr .float-cv .inner .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  vertical-align: middle;
}
.float-bnr .float-cv .inner .txt span {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  pointer-events: auto;
  cursor: pointer;
  background: rgb(125, 125, 125);
  border: none;
  border-radius: 50%;
  opacity: 0.6;
}
.pagetop__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: translateY(20%) rotate(-45deg);
}

.statement {
  box-sizing: border-box;
  padding: 60px 20px;
  text-align: center;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
}

.cta {
  background-color: #646464;
}
.cta .inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  min-height: 98px;
  padding: 15px 20px;
}
.cta .ttl {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}
.cta .ann {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: underline;
  letter-spacing: 0.05em;
}
.cta .cv-btn {
  box-sizing: border-box;
  justify-content: center;
  width: 350px;
  margin: 2px 0;
}
.cta span {
  font-size: 2.4rem;
  font-weight: 600;
  color: white;
}
.cta::before {
  display: block;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--gradient-gold1);
}

.cv-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 2px 30px 2px 0;
  font-size: 2.3rem;
  font-weight: 600;
  background: var(--gradient-gold-btn);
  border-radius: 4px;
  transition: 0.3s ease;
}
.cv-btn:hover {
  background: linear-gradient(0deg, rgb(168, 153, 83) 0%, rgb(168, 153, 83) 0.05%, rgb(170, 155, 86) 23.41%, rgb(176, 162, 96) 42%, rgb(186, 173, 113) 58.96%, rgb(201, 188, 137) 74.93%, rgb(219, 208, 167) 90.09%, rgb(234, 224, 191) 100%);
}
.cv-btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  float: right;
  width: 14px;
  height: 16px;
  content: "";
  background: url("../img/btn-arrow@2x.png") 0 0 no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.service-index {
  padding: 65px 20px;
}
.service-index .sv-copy {
  margin-bottom: 40px;
}
.service-index ul {
  display: flex;
  justify-content: space-between;
}
.sv {
  background-color: #dadada;
}
.sv .inner {
  padding-bottom: 50px;
}
.sv .inner:last-child {
  padding-bottom: 90px;
}
.sv .tag {
  text-align: center;
}
.sv h3 {
  margin: 65px auto;
  text-align: center;
}
.sv .main-img {
  margin-bottom: 48px;
  text-align: center;
}
.sv .ttl-bg-gray {
  padding: 5px 10px;
  margin-bottom: 28px;
  font-size: 1.9rem;
  font-weight: 600;
  color: white;
  background-color: #8b8f90;
}
.sv .ttl-bg-truck {
  display: flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 2px 20px;
  margin-bottom: 35px;
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
  background-color: #404040;
  border-radius: 100px;
}
.sv h5 {
  margin-bottom: 8px;
  font-size: 2.2rem;
  font-weight: 600;
}
.sv .icon-list {
  margin-top: 35px;
}
.sv .icon-list ul {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  margin-bottom: 50px;
}
.sv .icon-list ul li {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.sv .icon-list ul li span {
  font-size: 1.6rem;
  font-weight: 500;
}

.sv2 {
  padding-bottom: 40px;
  color: white;
  background-color: black;
}
.sv2 h4 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.sv2 .head {
  margin-bottom: 70px;
}
.sv2 .head .txt {
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
.sv2 .inner1 {
  padding: 0;
}
.sv2 .inner1 .ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 572px;
  padding-top: 20px;
  margin-bottom: 100px;
  border-top: 1px solid white;
}
.sv2 .inner1 .ttl::before {
  position: absolute;
  top: -18px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border: 11px solid transparent;
  border-top: 0 solid transparent;
  border-bottom: 18px solid white;
  transform: translateX(-50%);
}
.sv2 .inner1 .ttl div {
  margin: 20px -40px 0;
  font-size: 1.2rem;
}
.sv2 .inner2 {
  padding-bottom: 20px;
}
.sv2 .inner2 .ttl {
  margin-bottom: 35px;
}
.sv2 .inner2 .plus-point {
  padding: 50px 40px 40px;
  color: black;
  background-color: #ece9e0;
}
.sv2 .inner2 .plus-point h4 {
  margin-bottom: 35px;
}
.sv2 .inner2 .plus-point .flex-vc {
  margin-bottom: 40px;
}
.sv2 .inner2 .plus-point .flex-vc picture:nth-child(2) {
  margin: 0 14px 0 18px;
}
.sv2 .inner2 .plus-point p {
  margin-bottom: 30px;
}
.sv2 .inner3 {
  box-sizing: border-box;
  padding: 50px 40px 40px;
  color: black;
  background-color: #dadada;
}
.sv2 .inner3.inner {
  padding-bottom: 40px;
}
.sv2 .inner3 h4 {
  margin-bottom: 40px;
}
.sv2 .inner3 ul {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
}
.sv2 .inner3 ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 138px;
}
.sv2 .inner3 ul li span {
  font-size: 1.5rem;
}
.sv2 .inner3 p {
  margin-bottom: 40px;
  text-align: center;
}

.sv3 {
  background-color: #dadada;
}
.sv3 .inner1 p {
  margin-bottom: 40px;
}
.sv3 .inner1 .ttl-wrap {
  position: relative;
  margin-bottom: 24px;
}
.sv3 .inner1 .ttl-wrap::before {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  content: "";
  background-color: #8b8f90;
}
.sv3 .inner1 .ttl-wrap .ttl-bg-truck {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-weight: 500;
}
.sv3 .inner1 ul li {
  gap: 38px;
  padding: 0 10px;
  margin-bottom: 40px;
  background-image: repeating-linear-gradient(0deg, #8b8f90, #8b8f90 2px, transparent 2px, transparent 4px, #8b8f90 4px), repeating-linear-gradient(90deg, #8b8f90, #8b8f90 2px, transparent 2px, transparent 4px, #8b8f90 4px), repeating-linear-gradient(180deg, #8b8f90, #8b8f90 2px, transparent 2px, transparent 4px, #8b8f90 4px), repeating-linear-gradient(270deg, #8b8f90, #8b8f90 2px, transparent 2px, transparent 4px, #8b8f90 4px);
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-size: 0 0, 0 0, 0 0, 100% 1px;
}
.sv3 .inner1 ul li .icon {
  width: 90px;
}
.sv3 .inner1 ul li .txt {
  flex: 1;
}
.sv3 .inner1 ul li h6 {
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 600;
}
.sv3 .inner1 .comment {
  font-size: 1.5rem;
}
.sv3 .inner2 h5 {
  gap: 20px;
}
.sv3 .inner2 .annual-compensation-limit {
  gap: 15px;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 40px 0;
}
.sv3 .inner2 .annual-compensation-limit .yen {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.sv3 .inner2 .annual-compensation-limit span {
  font-size: 1.2rem;
}

.sv4 {
  color: white;
  background-color: black;
}
.sv4 .inner1 {
  padding-bottom: 70px;
}
.sv4 .inner1 .detail {
  margin-top: 40px;
}
.sv4 .inner1 .detail .bg-gradient-truck {
  width: 21.62162%;
  text-align: center;
  letter-spacing: 0.1em;
}
.sv4 .inner1 .detail .member-benefit, .sv4 .inner1 .detail .feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.sv4 .inner1 .detail .member-benefit .txt, .sv4 .inner1 .detail .feature .txt {
  font-size: 1.2rem;
}
.sv4 .inner1 .detail .member-benefit .txt {
  padding: 7px 0 0;
}
.sv4 .inner1 .detail .member-benefit .txt img {
  margin-bottom: 15px;
}
.sv4 .inner1 .detail .feature {
  margin-bottom: 0;
}
.sv4 .inner1 .detail .feature ul.txt {
  padding: 7px 0 0;
}
.sv4 .inner1 .detail .feature ul.txt li {
  font-size: 1.9rem;
  font-weight: 600;
}
.sv4 .inner2 .inner-inner {
  padding: 60px 50px 75px;
  margin-top: 70px;
  color: black;
  background-color: #dadada;
}
.sv4 .inner2 .inner-inner .head {
  margin-bottom: 40px;
  text-align: center;
}
.sv4 .inner2 .inner-inner .head h6 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 600;
}
.sv4 .inner2 .inner-inner .head p {
  text-align: inherit;
}
.sv4 .inner2 .inner-inner .body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  text-align: center;
}
.sv4 .inner2 .inner-inner .body .box {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(50% - 11px);
  padding: 0 15px 20px;
  background-color: white;
}
.sv4 .inner2 .inner-inner .body .box h6 {
  font-size: 1.8rem;
  font-weight: 600;
}
.sv4 .inner2 .inner-inner .body .box p {
  font-size: 1.5rem;
}
.sv4 .inner2 .inner-inner .body .box a {
  margin: 20px 0 0;
}
.sv4 .inner2 .inner-inner .body .box a .icon {
  width: 29px;
  height: auto;
}
.sv4 .inner2 .inner-inner .body .box a .icon img {
  margin-top: -6px;
  vertical-align: middle;
}
.sv4 .inner2 .inner-inner .body .box a.pdf {
  margin-bottom: 5px;
}
.sv4 .inner2 .inner-inner .body .box a.pdf::after {
  content: none;
}
.sv4 .inner2 .inner-inner .body .box .ttl {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 20px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  background-color: black;
}
.sv4 .inner2 .inner-inner .body .box .box-in {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sv4 .inner2 .inner-inner .body .box .box-in div {
  height: 100%;
}
.sv4 .inner2 .inner-inner .body .box .box-in div p {
  text-align: center;
}
.sv4 .inner2 .inner-inner .body .box .box-in div p:nth-of-type(1) {
  margin-bottom: 15px;
}
.sv4 .inner2 .inner-inner .body .box .bg-gradient-truck {
  padding: 4px 18px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 300;
}
.sv4 .inner2 .inner-inner .foot .flex-center {
  gap: 23px;
}
.sv4 .inner2 .inner-inner .foot p {
  margin-bottom: 20px;
  text-align: center;
}
.sv4 .inner2 .inner-inner .foot .annotation {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  text-indent: -1em;
  padding-left: 1em;
}

.sv5 .inner > p {
  margin-bottom: 40px;
}
.sv5 .inner1 .flex .box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  width: calc(50% - 38px);
}
.sv5 .inner1 .flex .box > p {
  margin-bottom: 15px;
}
.sv5 .inner1 .flex .box .annual-fee {
  margin-bottom: 30px;
}
.sv5 .inner1 .flex .box .annual-fee img {
  margin-bottom: 20px;
}
.sv5 .inner1 .flex .box .annual-fee p {
  font-size: 1.5rem;
}
.sv5 .inner1 .flex .box .annual-fee p span {
  font-size: 2.3rem;
  font-weight: 600;
}
.sv5 .inner1 .flex .box .bg-wt {
  box-sizing: border-box;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 36px 15px 17px;
  background-color: white;
  border-radius: 5px;
}
.sv5 .inner1 .flex .box .bg-wt p {
  font-size: 1.5rem;
  font-weight: 600;
}
.sv5 .inner1 .flex .box .bg-wt ul {
  flex: 1;
  padding-left: 18px;
  margin-left: 24px;
  border-left: 1px solid #646464;
}
.sv5 .inner1 .flex .box .bg-wt ul li {
  font-size: 1.5rem;
}
.sv5 .inner1 .flex .box .bg-wt ul li span {
  display: block;
  float: right;
  font-weight: 600;
}
.sv5 .inner2 > p {
  margin-bottom: 35px;
}
.sv5 .inner2 .feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 35px;
}
.sv5 .inner2 .feature .bg-gradient-truck {
  flex-shrink: 0;
  width: 21.62162%;
  text-align: center;
}
.sv5 .inner2 .feature .txt {
  width: 100%;
  padding-top: 7px;
}
.sv5 .inner2 .feature .txt li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  font-size: 2rem;
}
.sv5 .inner2 .feature .txt .annotation {
  padding-left: 1em;
  text-indent: -1em;
}
.sv5 .inner3 > p {
  margin-bottom: 35px;
}
.sv5 .inner3 .ex {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sv5 .inner3 .ex ul {
  padding-top: 7px;
  margin-bottom: 30px;
}
.sv5 .inner3 .ex ul li {
  font-size: 1.9rem;
  font-weight: 600;
}
.sv5 .inner3 .bg-gray-truck {
  width: 148px;
  font-size: 1.9rem;
  font-weight: 500;
}

.basic-information {
  padding: 135px 0 80px;
}
.basic-information .head {
  margin-bottom: 40px;
}

.accordion-area {
  margin: 0 auto;
  list-style: none;
}
.accordion-area .bi5 section .click .right .title span .bg-gray-truck {
  font-weight: 500;
  font-size: 1.6rem;
  color: white;
  background: #787878;
  margin-left: 27px;
}
.accordion-area li:last-child section {
  margin-bottom: 0;
}
.accordion-area section {
  padding: 0 40px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #787878;
}
.accordion-area section .click {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  width: 100%;
}
.accordion-area section .click .icon {
  flex-shrink: 0;
}
.accordion-area section .click .right {
  width: 100%;
}
.accordion-area section .click .right .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  cursor: pointer;
}
.accordion-area section .click .right .title span {
  font-size: 2rem;
  color: #646464;
}
.accordion-area section .click .right .title .toggle {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  background-color: #787878;
  border-radius: 100px;
}
.accordion-area section .click .right .title .toggle::before {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  content: "";
  background-color: white;
  transform: rotate(0deg);
}
.accordion-area section .click .right .title .toggle::after {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  content: "";
  background-color: white;
  transition: 0.3s ease;
  transform: rotate(90deg);
}
.accordion-area section .click .right .cf:last-child .btn-readmore {
  margin-bottom: 0;
}
.accordion-area section .click .right .title.close .toggle::after {
  transform: rotate(0deg);
}
.accordion-area section .box {
  display: none;
  max-width: 468px;
  padding: 20px 0;
  margin: 0 0 0 106px;
  color: #646464;
}
.accordion-area section .box h4 {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
.accordion-area section .box p {
  font-size: 1.6rem;
  text-align: justify;
  word-break: break-all;
}
.accordion-area section .box p .annotation {
  line-height: 1.5;
}
.accordion-area section .box .brand-list {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.accordion-area section .box .annotation {
  display: inline-block;
  margin-top: 10px;
  line-height: 1.5;
}
.accordion-area section .box .annotation a {
  text-decoration: underline;
}
.accordion-area section .box .btn-readmore {
  margin-top: 30px;
  margin-bottom: 0;
}

.rst {
  padding: 70px 20px;
  background-color: #787878;
}
.rst .head {
  margin-bottom: 40px;
}
.rst .accordion-area section {
  border-bottom-color: white;
}
.rst .accordion-area section .click .right .title .toggle {
  background-color: white;
}
.rst .accordion-area section .click .right .title .toggle::before, .rst .accordion-area section .click .right .title .toggle::after {
  background-color: #787878;
}
.rst .accordion-area section .click .right .title span {
  color: white;
}
.rst .accordion-area section .box {
  color: white;
}
.rst .accordion-area section .box .flex-left {
  gap: 15px;
  align-items: center;
  align-items: center;
  margin-bottom: 25px;
}
.rst .accordion-area section .box .flex-left.flex1 {
  margin-top: 20px;
}
.rst .accordion-area section .box .flex-left.flex1 .bg-gray {
  margin-top: 0;
}
.rst .accordion-area section .box .flex-left.flex2 {
  gap: 0;
}
.rst .accordion-area section .box .flex-left.flex2 p {
  letter-spacing: -0.01em;
}
.rst .accordion-area section .box .flex-left h6, .rst .accordion-area section .box .flex-left p {
  margin-bottom: 0;
}
.rst .accordion-area section .box .bg-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 2px 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #787878;
  background-color: #dadada;
}
.rst .accordion-area section .box .bg-gray2 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 2px 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  background-color: #8b8f90;
}
.rst .accordion-area section .box .bg-wt {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 2px 10px;
  margin-bottom: 0;
  color: #646464;
  vertical-align: baseline;
  background-color: white;
}
.rst .accordion-area section .box .bg-wt .annotation {
  display: inline-block;
  margin-top: 0;
}
.rst .accordion-area section .box .btn-readmore {
  color: white;
}
.rst .accordion-area section .box .btn-readmore::after {
  background-image: url("../img/btn-arrow-wt@2x.png");
}
.rst .accordion-area .rst2 .box {
  max-width: none;
}
.rst .accordion-area .rst2 .box p {
  max-width: 468px;
}

.app {
  padding: 70px 20px 100px;
}
.app .head {
  margin-bottom: 50px;
}
.app .body .box .flex {
  gap: 29px;
}
.app .body .box .flex .app1-p {
  flex: 1;
  margin-bottom: 30px;
}

.application-flow {
  padding: 50px 20px;
  overflow: hidden;
  background-color: #787878;
}
.application-flow .head {
  margin-bottom: 40px;
}
.application-flow .body {
  width: 996px;
  width: 960px;
  max-width: 100%;
}
.application-flow .body .slick .slide {
  max-width: 30.83333%;
  text-align: center;
}
.application-flow .body .slick .slide .inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 35px;
  margin: 0 18px;
  margin: 0 10px;
  background-color: white;
  border-radius: 10px;
}
.application-flow .body .slick .slide .inner .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 168px;
}
.application-flow .body .slick .slide .inner .img.img6 {
  position: relative;
  right: -10px;
  justify-content: flex-end;
}
.application-flow .body .slick .slide .num {
  font-size: 2.8rem;
  font-weight: 600;
}
.application-flow .body .slick .slide h4 {
  font-size: 1.8rem;
  font-weight: 600;
}
.application-flow .body .slick .slide p {
  font-size: 1.4rem;
  word-break: break-all;
}
.application-flow .body .slick .slide p a {
  display: inline;
  color: #0068b6;
  text-decoration: underline;
  word-break: break-all;
}
.application-flow .body .slick .slide .annotation {
  text-align: justify;
}
.application-flow .body .slick .slick-track {
  display: flex;
}
.application-flow .body .slick .slick-slide {
  height: auto !important;
}
.application-flow .body .slick .slick-prev, .application-flow .body .slick .slick-next {
  width: 28px;
  height: 32px;
}
.application-flow .body .slick .slick-arrow.slick-disabled {
  display: none !important;
}
.application-flow .body .slick .slick-prev {
  left: -30px;
}
.application-flow .body .slick .slick-prev::before {
  display: block;
  width: 28px;
  height: 32px;
  content: "";
  background: url("../img/slide-arrow-prev@2x.png") 0 0 no-repeat;
  background-size: contain;
}
.application-flow .body .slick .slick-next {
  right: -30px;
}
.application-flow .body .slick .slick-next::before {
  display: block;
  width: 28px;
  height: 32px;
  content: "";
  background: url("../img/slide-arrow-next@2x.png") 0 0 no-repeat;
  background-size: contain;
}

.footer-top {
  padding: 45px 20px 0;
}
.footer-top p {
  margin-bottom: 60px;
  font-size: 1.2rem;
}
.footer-top .flex-center {
  gap: 25px;
  margin-bottom: 60px;
}
.footer-top a {
  font-size: 1.2rem;
  text-decoration: underline;
}

.footer .bg-bk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  color: white;
  background-color: black;
}

@media screen and (max-width: 1280px) {
  .nav {
    padding-bottom: 50px;
  }
  .nav ul li {
    margin-bottom: 5px;
  }
  .nav ul li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    box-sizing: border-box;
    padding: 0 20px;
  }
  .service-index ul {
    gap: 20px;
  }
  .sv {
    padding: 0 20px;
  }
  .sv2 {
    padding-bottom: 40px;
  }
  .footer .bg-bk {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  p {
    font-size: 1.4rem;
  }
  .anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
  .cta::before {
    height: 3px;
  }
  .cta .inner {
    gap: 8px;
    min-height: 73px;
    padding: 6px 20px;
  }
  .cta .inner > div {
    width: 50%;
  }
  .cta .ttl {
    font-size: 1.1rem;
  }
  .cta .ann-wrap {
    display: flex;
    justify-content: center;
    height: auto;
  }
  .cta .ann {
    font-size: 1rem;
  }
  .cta .cv-btn {
    width: 100%;
    min-height: 40px;
    padding-right: 17px;
    padding-left: 0;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  .cta .cv-btn::after {
    right: 7px;
    width: 10px;
    height: 11px;
  }
  .cta span {
    font-size: 1.5rem;
  }
  .cv-btn {
    padding: 0 15px;
    padding-right: 40px;
    font-size: 1.6rem;
  }
  .annotation {
    font-size: 1rem;
  }
  .btn-readmore {
    font-size: 1.3rem;
  }
  .btn-readmore::after {
    width: 11px;
    height: 13px;
  }
  .btn-bk {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 1.5rem;
  }
  .bg-wt-truck {
    min-height: 26px;
    padding: 0 12px;
    font-size: 1.4rem;
  }
  .bg-gradient-truck {
    padding: 0 18px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .bg-gray-truck {
    padding: 2px 15px;
    font-size: 1.6rem;
  }
  .header {
    width: 100%;
    height: 50px;
    padding: 0;
  }
  .header .inner {
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding-right: 16px;
    padding-left: 20px;
  }
  .nav {
    right: -100%;
    max-width: 100%;
    height: 100% !important;
    padding-bottom: 30px;
  }
  .nav ul li a {
    font-size: 1.4rem;
  }
  .footer-top {
    padding-bottom: 60px;
  }
  .footer-top .flex-center {
    margin-bottom: 0;
  }
  .footer {
    padding: 0;
  }
  .float-wrap {
    position: sticky;
    position: relative;
    bottom: 0;
    z-index: 1;
    height: auto;
  }
  .float-bnr {
    position: relative;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    transform: none;
  }
  .float-bnr .flex-order {
    display: flex;
    flex-direction: column-reverse;
    transform: translateY(0);
  }
  .float-bnr .float-cv {
    flex-direction: column;
    margin-bottom: 0;
    writing-mode: unset;
  }
  .float-bnr .float-cv::after {
    content: none;
  }
  .float-bnr .float-cv::before {
    position: relative;
    top: 0;
    z-index: 5;
    display: block;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, rgb(146, 127, 40) 0.05%, rgb(149, 130, 38) 22.06%, rgb(159, 138, 34) 39.7%, rgb(169, 147, 29) 50%, rgb(170, 148, 31) 59.18%, rgb(173, 151, 38) 63.08%, rgb(178, 157, 51) 65.98%, rgb(185, 166, 68) 68.39%, rgb(195, 177, 91) 70.48%, rgb(206, 190, 120) 72.37%, rgb(220, 206, 153) 74.05%, rgb(229, 216, 175) 75%, rgb(207, 192, 144) 76.75%, rgb(181, 164, 106) 79.19%, rgb(162, 144, 79) 81.46%, rgb(150, 131, 63) 83.47%, rgb(146, 127, 57) 85%, rgb(148, 129, 59) 91.87%, rgb(153, 134, 66) 94.79%, rgb(163, 144, 79) 96.96%, rgb(176, 158, 96) 98.74%, rgb(190, 172, 114) 100%);
  }
  .float-bnr .float-cv .inner {
    width: 100%;
    padding: 8px 20px 20px;
  }
  .float-bnr .float-cv .inner .cv-btn {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 4px;
  }
  .float-bnr .float-cv .inner .cv-btn::after {
    position: absolute;
    top: 50%;
    right: 15px;
    left: auto;
    margin: 0;
    transform: translateY(-50%);
  }
  .float-bnr .float-cv .inner .txt {
    display: none;
  }
  .float-bnr .shiny-btn img {
    width: 100%;
  }
  .pagetop {
    position: absolute;
    top: -50px;
    right: 10px;
  }
  .fv {
    padding-top: 50px;
  }
  .statement {
    box-sizing: border-box;
    padding: 25px 20px;
  }
  .service-index {
    padding: 40px 20px 50px;
  }
  .service-index ul {
    flex-direction: column;
    gap: 10px;
  }
  .service-index ul li a {
    display: block;
  }
  .service-index ul li a img {
    width: 100%;
  }
  .sv {
    position: relative;
    z-index: 1;
    padding-right: 30px;
    padding-left: 30px;
  }
  .sv h3 {
    margin: 30px auto;
  }
  .sv .main-img {
    margin-bottom: 25px;
  }
  .sv .main-img img {
    width: 100%;
  }
  .sv .ttl-bg-gray {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .sv .ttl-bg-truck {
    margin-bottom: 25px;
    font-size: 1.3rem;
  }
  .sv h5 {
    font-size: 1.8rem;
  }
  .sv .icon-list {
    margin-top: 30px;
  }
  .sv .icon-list ul {
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 35px;
  }
  .sv .icon-list ul li {
    width: 80px;
  }
  .sv .icon-list ul li span {
    font-size: 1.3rem;
  }
  .sv .inner {
    padding-bottom: 35px;
  }
  .sv .inner:last-child {
    padding-bottom: 35px;
  }
  .sv .inner p .annotation {
    display: inline-block;
    display: inline-flex;
    line-height: 1.5;
  }
  .sv1 .inner3 p {
    margin-bottom: 25px;
  }
  .sv2 {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .sv2 .head {
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 25px;
  }
  .sv2 .head .txt {
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: justify;
  }
  .sv2 h4 {
    font-size: 1.8rem;
  }
  .sv2 .inner1 {
    box-sizing: border-box;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
  }
  .sv2 .inner1 .ttl {
    margin-bottom: 0;
  }
  .sv2 .inner1 .ttl div {
    margin: 10px 0 0;
  }
  .sv2 .inner1 .ttl::before {
    top: -16px;
    border-width: 6px;
    border-bottom-width: 10px;
  }
  .sv2 .inner2 {
    padding-bottom: 15px;
  }
  .sv2 .inner2 .ttl {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .sv2 .inner2 .plus-point {
    padding: 30px 25px 20px;
  }
  .sv2 .inner2 .plus-point p.center {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: justify;
  }
  .sv2 .inner2 .plus-point .annotation {
    padding-top: 10px;
  }
  .sv2 .inner2 .plus-point h4 {
    margin-bottom: 20px;
  }
  .sv2 .inner2 .plus-point .flex-vc {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .sv2 .inner3 {
    padding: 25px;
    padding-bottom: 25px;
  }
  .sv2 .inner3.inner {
    padding-bottom: 20px;
  }
  .sv2 .inner3 h4 {
    margin-bottom: 20px;
  }
  .sv2 .inner3 ul {
    flex-wrap: wrap;
    gap: 20px 4%;
    margin-bottom: 20px;
  }
  .sv2 .inner3 ul li {
    width: 46%;
  }
  .sv2 .inner3 ul li img {
    width: 80px;
  }
  .sv2 .inner3 ul li span {
    font-size: 1.3rem;
  }
  .sv2 .inner3 p {
    margin-bottom: 20px;
    text-align: justify;
  }
  .sv3 .inner1 .ttl-bg-gray {
    letter-spacing: -0.05em;
  }
  .sv3 .inner1 .ttl-wrap {
    flex-direction: row;
  }
  .sv3 .inner1 ul li {
    display: block;
    padding: 0;
  }
  .sv3 .inner1 ul li:last-child {
    margin-bottom: 20px;
  }
  .sv3 .inner1 ul li .icon {
    float: left;
    width: 80px;
    margin-right: 18px;
  }
  .sv3 .inner1 ul li .txt {
    padding-bottom: 25px;
  }
  .sv3 .inner1 ul li .txt p {
    margin-bottom: 0;
  }
  .sv3 .inner1 ul li h6 {
    padding-top: 10px;
    margin-bottom: 35px;
    font-size: 1.6rem;
  }
  .sv3 .inner1 .comment {
    margin-bottom: 25px;
    font-size: 1.3rem;
  }
  .sv3 .inner2 .annual-compensation-limit {
    flex-direction: row;
    align-items: flex-start;
    margin: 25px 0;
  }
  .sv3 .inner2 .annual-compensation-limit .yen {
    flex-direction: column;
    align-items: flex-start;
  }
  .sv3 .inner2 .annual-compensation-limit .yen span {
    font-size: 1rem;
  }
  .sv3 .inner2 h5 {
    gap: 10px;
    letter-spacing: 0;
  }
  .sv4 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .sv4 .head {
    box-sizing: border-box;
    padding: 0 10px;
  }
  .sv4 .inner1 {
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
  }
  .sv4 .inner1 .detail {
    margin-top: 25px;
  }
  .sv4 .inner1 .detail .bg-gradient-truck {
    width: 28%;
  }
  .sv4 .inner1 .detail .member-benefit, .sv4 .inner1 .detail .feature {
    flex-direction: column;
  }
  .sv4 .inner1 .detail .feature ul.txt li {
    font-size: 1.4rem;
  }
  .sv4 .inner2 {
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
  }
  .sv4 .inner2 .inner-inner {
    padding: 35px 20px 25px;
    margin-top: 50px;
    margin-right: -10px;
    margin-left: -10px;
  }
  .sv4 .inner2 .inner-inner .head h6 {
    font-size: 1.8rem;
  }
  .sv4 .inner2 .inner-inner .body {
    flex-direction: column;
    margin-bottom: 35px;
  }
  .sv4 .inner2 .inner-inner .body .box {
    width: 100%;
  }
  .sv4 .inner2 .inner-inner .body .box .ttl {
    font-size: 1.6rem;
  }
  .sv4 .inner2 .inner-inner .body .box h6 {
    font-size: 1.6rem;
  }
  .sv4 .inner2 .inner-inner .body .box p {
    font-size: 1.4rem;
  }
  .sv4 .inner2 .inner-inner .body .box a .icon {
    width: 22px;
  }
  .sv4 .inner2 .inner-inner .body .box .bg-gradient-truck {
    font-size: 1.3rem;
    font-weight: 500;
  }
  .sv5 .inner1 > p {
    margin-bottom: 20px;
  }
  .sv5 .inner1 .flex {
    flex-direction: column;
  }
  .sv5 .inner1 .flex .box {
    width: 100%;
  }
  .sv5 .inner1 .flex .box:first-child {
    margin-bottom: 25px;
  }
  .sv5 .inner1 .flex .box .annual-fee {
    margin-bottom: 20px;
  }
  .sv5 .inner1 .flex .box .annual-fee p {
    font-size: 1.4rem;
  }
  .sv5 .inner1 .flex .box .annual-fee p span {
    font-size: 2.1rem;
  }
  .sv5 .inner1 .flex .box .bg-wt {
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .sv5 .inner1 .flex .box .bg-wt p {
    font-size: 1.4rem;
  }
  .sv5 .inner1 .flex .box .bg-wt ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    border: none;
  }
  .sv5 .inner1 .flex .box .bg-wt ul li {
    display: inline-block;
    font-size: 1.3rem;
  }
  .sv5 .inner1 .flex .box .bg-wt ul li:last-child {
    flex-grow: 1;
    margin-left: 15px;
  }
  .sv5 .inner1 .flex .box .bg-wt ul li span {
    margin-left: auto;
  }
  .sv5 .inner2 > p {
    margin-bottom: 25px;
  }
  .sv5 .inner2 .feature {
    flex-direction: column;
    gap: 10px;
  }
  .sv5 .inner2 .feature .txt {
    padding-top: 0;
  }
  .sv5 .inner2 .feature .txt li {
    display: inline;
    margin-right: 14px;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
  }
  .sv5 .inner2 .feature .txt li:last-of-type {
    margin: 0;
  }
  .sv5 .inner2 .feature .txt .ann1 {
    margin-top: 5px;
  }
  .sv5 .inner3 > p {
    margin-bottom: 20px;
  }
  .sv5 .inner3 .ex {
    flex-direction: column;
    gap: 15px;
  }
  .sv5 .inner3 .ex ul {
    padding: 0;
    margin-bottom: 15px;
  }
  .sv5 .inner3 .ex ul li {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .sv5 .inner3 .bg-gray-truck {
    width: auto;
    margin: 0;
    font-size: 1.3rem;
  }
  .basic-information {
    padding: 50px 20px;
  }
  .basic-information .head {
    margin-bottom: 15px;
  }
  .accordion-area .bi5 section .click .right .title span .bg-gray-truck {
    padding: 6px 14px;
    font-size: 1.4rem;
    margin-left: 13px;
  }
  .accordion-area section {
    padding: 13px 20px;
    border: 1px solid #747474;
    box-shadow: 4px 4px 0 0 #dadada;
  }
  .accordion-area section .click {
    gap: 24px;
  }
  .accordion-area section .click .icon {
    width: 58px;
  }
  .accordion-area section .click .right .title {
    height: 58px;
  }
  .accordion-area section .click .right .title .toggle {
    width: 24px;
    height: 24px;
  }
  .accordion-area section .click .right .title .toggle::before {
    left: 6px;
    width: 12px;
  }
  .accordion-area section .click .right .title .toggle::after {
    left: 6px;
    width: 12px;
  }
  .accordion-area section .click .right .title span {
    font-size: 1.6rem;
  }
  .accordion-area section .box {
    padding-top: 15px;
    padding-bottom: 7px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .accordion-area section .box h4 {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .accordion-area section .box h4:first-of-type {
    margin-top: 0;
  }
  .accordion-area section .box h4 span {
    font-size: 1.3rem;
  }
  .accordion-area section .box p {
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .accordion-area section .box p:last-of-type {
    margin-bottom: 0;
  }
  .accordion-area section .box p .annotation {
    margin-top: 0;
  }
  .accordion-area section .box .annotation {
    display: block;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
  .accordion-area section .box .annotation a {
    color: inherit;
  }
  .accordion-area section .box .btn-readmore {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .accordion-area .bi2 .box .brand-list {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .accordion-area .bi2 .box .brand-list .visa {
    width: 53px;
  }
  .accordion-area .bi2 .box .brand-list .amex {
    width: 40px;
  }
  .accordion-area .bi5 .box h4 {
    letter-spacing: 0;
  }
  .accordion-area .bi7 .annotation:nth-of-type(1) {
    letter-spacing: -0.05em;
  }
  .rst {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .rst .head {
    margin-bottom: 20px;
  }
  .rst .accordion-area section {
    background-color: white;
    border: 1px solid #747474;
  }
  .rst .accordion-area section .click .right .title span {
    color: #646464;
  }
  .rst .accordion-area section .click .right .title .toggle {
    background-color: #787878;
  }
  .rst .accordion-area section .click .right .title .toggle::before, .rst .accordion-area section .click .right .title .toggle::after {
    background-color: white;
  }
  .rst .accordion-area section .box p {
    color: #646464;
  }
  .rst .accordion-area section .box .annotation {
    color: #646464;
  }
  .rst .accordion-area section .box .bg-gray, .rst .accordion-area section .box .bg-gray2 {
    display: inline-flex;
    min-height: 26px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  .rst .accordion-area section .box .bg-wt {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    border: 1px solid #787878;
  }
  .rst .accordion-area section .box .flex-left {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .rst .accordion-area section .box .flex-left.flex2 {
    margin-right: 0;
    margin-bottom: 0;
  }
  .rst .accordion-area section .box .flex-left.flex2 .bg-wt {
    display: block;
  }
  .rst .accordion-area section .box .btn-readmore {
    gap: 5px;
    color: black;
  }
  .rst .accordion-area section .box .btn-readmore::after {
    background-image: url("../img/btn-arrow.png");
  }
  .app {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .app .head {
    margin-bottom: 20px;
  }
  .app .body .box .flex {
    flex-direction: row;
    gap: 30px;
  }
  .app .body .box .flex .app1-p {
    margin-bottom: 0;
  }
  .app .body .box .flex .img {
    width: 78px;
  }
  .app .body .app1 .btn-readmore {
    margin-top: 0;
  }
  .application-flow {
    padding: 50px 20px;
  }
  .application-flow .head {
    margin-bottom: 20px;
  }
  .application-flow .body {
    width: 100%;
  }
  .application-flow .body .slick .slide h4 {
    font-size: 1.7rem;
  }
  .application-flow .body .slick .slide .inner {
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 10px;
  }
  .application-flow .body .slick .slide .inner .img {
    width: 100%;
    height: 140px;
  }
  .application-flow .body .slick .slide .inner div.annotation {
    margin-top: 5px;
  }
  .application-flow .body .slick .slick-prev, .application-flow .body .slick .slick-next {
    width: 20px;
    height: 23px;
  }
  .application-flow .body .slick .slick-prev::before, .application-flow .body .slick .slick-next::before {
    width: 100%;
    height: 100%;
  }
  .application-flow .body .slick .slick-prev {
    left: 18px;
    z-index: 1;
  }
  .application-flow .body .slick .slick-prev::before {
    background-image: url("../img/slide-arrow-prev-gray@2x.png");
  }
  .application-flow .body .slick .slick-next {
    right: 18px;
    z-index: 1;
  }
  .application-flow .body .slick .slick-next::before {
    background-image: url("../img/slide-arrow-next-gray@2x.png");
  }
  .application-flow .body .slick .slick-dots {
    bottom: -35px;
  }
  .application-flow .body .slick .slick-dots li.slick-active button::before {
    color: black;
    opacity: 1;
  }
  .application-flow .body .slick .slick-dots li button::before {
    color: white;
    opacity: 1;
  }
  .footer-top p {
    box-sizing: border-box;
  }
  .footer-top p span {
    display: inline-block;
    padding-left: 1em;
    text-indent: -1em;
  }
  footer .w960 {
    box-sizing: border-box;
    padding: 0 20px;
  }
  footer .bg-bk {
    position: sticky;
    bottom: 0;
    left: 0;
  }
  footer .bg-bk .flex {
    align-items: center;
  }
  footer .bg-bk .flex span {
    margin-top: 5px;
    font-size: 1rem;
  }
}
@media screen and (max-height: 480px) {
  .nav {
    padding-bottom: 20px;
  }
  .nav ul li {
    margin-bottom: 0;
  }
  .nav ul li a {
    padding-bottom: 0;
    font-size: 1.3rem;
  }
}
:root {
  --scale:5.24449;
  --copy-height:3.75vw;
}

@keyframes first-logo {
  0% {
    -webkit-mask-position: 62% 0;
    mask-position: 62% 0;
  }
  100% {
    -webkit-mask-position: -70% 0;
    mask-position: -70% 0;
  }
}
@keyframes line {
  0% {
    left: -16%;
  }
  100% {
    left: 116%;
  }
}
@keyframes lastlogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes card {
  0% {
    opacity: 0;
    transform: translate(0, -10%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes cardshadow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes copy-height {
  0% {
    height: 0;
  }
  100% {
    height: var(--copy-height);
  }
}
.fv {
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}
.fv .animate {
  position: relative;
  background: linear-gradient(180deg, rgb(21, 5, 4) 0%, rgb(21, 5, 4) 25%, rgb(54, 49, 50) 64.09%, rgb(72, 73, 76) 90%, rgb(72, 73, 76) 100%);
}
.fv .animate .first-logo {
  position: relative;
}
.fv .animate .first-logo img {
  width: 100%;
  mask-image: url("../img/fv/fv-mask.svg");
  mask-repeat: no-repeat;
  mask-position: 62% 0;
  mask-size: 200%;
  -webkit-mask-image: url("../img/fv/fv-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 62% 0;
  -webkit-mask-size: 200%;
  animation-name: first-logo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.fv .animate .first-logo::after {
  position: absolute;
  top: 0;
  left: -16%;
  display: block;
  width: 10px;
  height: 100%;
  content: "";
  background: linear-gradient(33.84deg, rgb(100, 93, 68) 0%, rgb(103, 96, 70) 22.04%, rgb(113, 106, 78) 39.69%, rgb(123, 115, 86) 50%, rgb(125, 117, 88) 59.97%, rgb(132, 124, 94) 64.22%, rgb(145, 136, 104) 67.37%, rgb(162, 153, 119) 69.99%, rgb(185, 175, 139) 72.28%, rgb(213, 202, 162) 74.3%, rgb(225, 213, 172) 75%, rgb(210, 198, 159) 75.96%, rgb(172, 162, 128) 78.64%, rgb(145, 136, 105) 81.12%, rgb(129, 121, 91) 83.32%, rgb(123, 115, 86) 85%, rgb(125, 117, 88) 91.65%, rgb(132, 124, 93) 94.5%, rgb(145, 136, 103) 96.62%, rgb(162, 152, 117) 98.37%, rgb(185, 174, 135) 99.89%, rgb(187, 176, 136) 100%);
  transform: skewX(-33.84deg) translateX(-50%);
  animation-name: line;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.fv .animate .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv .animate .bg .img {
  position: relative;
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-in-cubic);
}
.fv .animate .bg .img img {
  max-width: none;
}
.fv .animate .last-logo {
  position: absolute;
  top: 12.34375vw;
  left: 11.71875vw;
  z-index: 1;
  width: 31.95312%;
  height: auto;
}
.fv .animate .last-logo .img {
  width: 100%;
  opacity: 0;
  animation-name: lastlogo;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 2.5s;
}
.fv .animate .last-logo img {
  width: 100%;
}
.fv .animate .card {
  position: absolute;
  top: 6.25vw;
  right: 6.64062vw;
  width: 43.51562%;
}
.fv .animate .card .card-pers {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translate(0, -10%);
  animation-name: card;
  animation-duration: 1.5s;
  animation-timing-function: var(--ease-out-cubic);
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}
.fv .animate .card .card-pers img {
  width: 100%;
}
.fv .animate .card .shadow {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.fv .animate .card .shadow img {
  display: inline-block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0;
  animation-name: cardshadow;
  animation-duration: 1s;
  animation-timing-function: var(--ease-in-out-cubic);
  animation-delay: 4s;
  animation-fill-mode: forwards;
}
.fv .animate .copy {
  position: absolute;
  bottom: 9.21875vw;
  left: 11.875vw;
  width: 45.78125%;
  margin: 0 auto;
}
.fv .animate .copy .img {
  height: 0;
  overflow: hidden;
  animation-name: copy-height;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 3.5s;
}
.fv .animate .copy img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.statement {
  padding-bottom: 70px;
}

.banner {
  padding-bottom: 65px;
}

@keyframes shiny3 {
  0% {
    left: -20%;
  }
  100% {
    left: 120%;
  }
}
.shiny-btn3:hover::after {
  position: absolute;
  top: 0;
  left: -20%;
  width: 80px;
  height: 100%;
  content: "";
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 100%);
  transform: scale(2) rotate(20deg);
  /* アニメーション */
  animation-name: shiny3;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@media screen and (max-width: 768px) {
  .banner {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --scale:3.142131;
    --copy-height:6.6666vw;
  }
  @keyframes first-logo {
    0% {
      -webkit-mask-position: 100% 0;
      mask-position: 100% 0;
    }
    100% {
      -webkit-mask-position: 0% 0;
      mask-position: 0% 0;
    }
  }
  @keyframes line {
    0% {
      left: -35%;
    }
    100% {
      left: 135%;
    }
  }
  .fv .animate .first-logo img {
    width: 100%;
    mask-image: url("../img/fv/fv-mask-sp.svg");
    mask-position: 100% 0;
    mask-size: 270%;
    -webkit-mask-image: url("../img/fv/fv-mask-sp.svg");
    -webkit-mask-position: 100% 0;
    -webkit-mask-size: 270%;
  }
  .fv .animate .first-logo::after {
    left: -35%;
  }
  .fv .animate .last-logo {
    position: relative;
    top: 0;
    left: 0;
    width: 52.53333vw;
    height: auto;
    margin: 5.3333vw auto 0;
  }
  .fv .animate .last-logo img {
    width: 52.53333vw;
    height: auto;
  }
  .fv .animate .card {
    position: relative;
    top: 0;
    right: 0;
    width: 77.3333vw;
    height: auto;
    padding-right: 2.6666vw;
    margin: 0.8vw auto 0;
  }
  .fv .animate .card img {
    width: 77.3333vw;
    height: auto;
  }
  .fv .animate .copy {
    position: relative;
    bottom: 0;
    left: 0;
    width: 80.26666vw;
    height: var(--copy-height);
    margin-top: -1.86666vw;
  }
  .fv .animate .copy .img {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .fv .animate .copy img {
    width: 80.26666vw;
    height: auto;
  }
  .statement {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .banner {
    padding: 0 20px 30px;
  }
}
.sv.sv5 .ttl-bg-gray {
  letter-spacing: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 21px;
}
.sv.sv5 .inner1 > h5 {
  margin-bottom: 6px;
}
.sv.sv5 .inner1 > p {
  margin-bottom: 37px;
}
.sv.sv5 .inner1 .box .p0 {
  line-height: 1.62;
  margin-bottom: 20px;
}
.sv.sv5 .inner1 .box .annual-fee {
  margin-bottom: 18px;
}
.sv.sv5 .inner1 .box .annual-fee p {
  line-height: 1.5;
  margin-top: 9px;
}
.sv.sv5 .inner1 .box .annual-fee .p2 {
  margin-top: 0;
}
.sv.sv5 .inner1 .box .annual-fee .p2 .sup {
  font-weight: inherit;
  position: relative;
  top: 2px;
}
.sv.sv5 .inner1 .box .annual-fee .p3 {
  line-height: 1;
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 6px;
}
.sv.sv5 .inner1 .box .annual-fee .p4 {
  margin-top: 7px;
  font-size: 1.2rem;
}
.sv.sv5 .inner1 .box .annual-fee .p4.marker {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 7px auto 0;
  padding: 0 3px;
}
.sv.sv5 .inner1 .box .annual-fee .p4.marker:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 6px;
  background-color: #d9cc98;
}
.sv.sv5 .inner1 .box .annual-fee .p4 .bold {
  font-size: inherit;
  font-weight: 700;
}
.sv.sv5 .inner1 .box .annual-fee .annotation {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.sv.sv5 .inner1 .box .annual-fee .annotation.ann1 {
  margin-top: 4px;
}
.sv.sv5 .inner1 .box .annual-fee .annotation.ann2 {
  margin-top: 9px;
}
.sv.sv5 .inner1 .box .annual-fee .annotation.ann2 li {
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
.sv.sv5 .inner1 .box .annual-fee .arrow {
  margin: 7px 0;
}
.sv.sv5 .inner1 .box .annual-fee .arrow img {
  margin: 0;
}
.sv.sv5 .inner1 .box .img {
  width: fit-content;
  border-bottom: 1px solid black;
  margin: 0 auto;
  padding: 0 32px;
}
.sv.sv5 .inner1 .box.box2 {
  justify-content: flex-start;
}
.sv.sv5 .inner1 .box.box2 .p0 {
  margin-bottom: 27px;
}
.sv.sv5 .inner1 .box.box2 .bg-wt {
  padding: 20px 50px 20px 34px;
  margin-bottom: 22px;
}
.sv.sv5 .inner1 .box.box2 .bg-wt p {
  padding-top: 8px;
}
.sv.sv5 .inner1 .box.box2 .bg-wt ul {
  padding-top: 9px;
  padding-bottom: 9px;
  margin-left: 19px;
}
.sv.sv5 .inner1 .box.box2 .bg-wt ul li {
  line-height: 1.67;
}
.sv.sv5 .inner1 .bg-gray-truck {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 13px;
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .sv3 .flex {
    flex-direction: row;
  }
  .sv5 .inner1 .flex .box {
    width: 100%;
  }
  .float-wrap {
    position: absolute;
    top: 0;
  }
  .float-wrap .pc {
    display: flex !important;
  }
  .float-wrap .sp {
    display: none !important;
  }
  .nav {
    right: -100%;
    max-width: 100%;
  }
  .sv2 .inner1 .ttl {
    max-width: 100%;
  }
  .sv2 .inner1 .ttl div {
    margin-left: 0;
    margin-right: 0;
  }
  .cta .inner {
    max-width: 100%;
  }
  .cta .have, .cta .nohave {
    max-width: calc(50% - 15px);
  }
  .cta .cv-btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .sv.sv5 .inner1 .bg-gray-truck {
    margin-left: -2.5px;
    margin-right: -2.5px;
    margin-bottom: 15px;
    padding: 3px 15px;
  }
  .sv.sv5 .inner1 .box .p0 {
    margin-bottom: 16px;
  }
  .sv.sv5 .inner1 .box .annual-fee .arrow img {
    width: 16px;
    height: 21px;
  }
  .sv.sv5 .inner1 .box.box2 .p0 {
    margin-bottom: unset;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt {
    margin: 10px 0 16px;
    padding: 10px 15px 13px;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt p {
    padding: 0;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt ul {
    display: grid;
    grid-template-columns: auto auto auto;
    margin-top: 5px;
    margin-left: 0;
    padding: 0;
    padding-right: 1px;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt ul li {
    line-height: 1.62;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt ul li:last-child {
    margin-left: 0;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt ul li:last-child span {
    margin-right: -24px;
  }
  .sv.sv5 .inner1 .box.box2 .bg-wt ul > :nth-child(3n+2) {
    padding-left: 5px;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee {
    margin-bottom: 13px;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee img {
    width: 151px;
    margin-bottom: 18px;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .p3 {
    font-size: 2.1rem;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .p4 {
    font-size: 1.1rem;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .ann1 {
    font-size: 1rem;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .ann2 {
    margin-top: 13px;
    font-size: 1rem;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .arrow {
    margin-top: 2px;
    margin-bottom: 9px;
  }
  .sv.sv5 .inner1 .flex .box .annual-fee .arrow img {
    margin-bottom: 0;
  }
  .sv.sv5 .inner1 .flex .box1 {
    margin-bottom: 41px;
  }
}

/*# sourceMappingURL=style-202508.css.map */
