@charset "UTF-8";
/* ----------------------------------
CSS読み込み
---------------------------------- */
/* ----------------------------------
ブレイクポイント
---------------------------------- */
/* ----------------------------------
色変数定義
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
:root {
  --Light-Button-Normal: #146EB8;
  --Light-Text-On-Fill: #FFFFFF;
  --Light-Text-Link: #146EB8;
  --Light-Background-Primary: #FFFFFF;
  --Light-Background-Accent: #146EB8;
  --Light-Background-Secondary: #F7F8FA;
  --Primitive-Colors-Sky-800: #146EB8;
  --Primitive-Colors-Leaf-800: #07B53B;
  --Primitive-Colors-Leaf-700: #07BF3E;
}

/* ----------------------------------
見出しサイズ変数定義
---------------------------------- */
/* ----------------------------------
リセット
---------------------------------- */
html,
body,
div,
section,
article,
h1,
h2,
h3,
h4,
h5,
figure,
p,
a,
ul,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
  max-width: 100%;
}

/* ----------------------------------
PC・タブレット・SP非表示設定
---------------------------------- */
@media screen and (max-width: 767px) {
  .sp-dn {
    display: none !important;
  }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
  .tb-dn {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .pc-dn {
    display: none !important;
  }
}

/* ----------------------------------
基本設定
---------------------------------- */
body {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ----------------------------------
タイポグラフィ基本設定
---------------------------------- */
h2 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-size: 23px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 36px;
  }
}

h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

.note {
  font-size: 12px;
}

.ruby {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--Light-Text-Accent, #146EB8);
}
@media screen and (min-width: 768px) {
  .ruby {
    font-size: 18px;
    margin-top: -10px;
  }
}

/* ----------------------------------
CVボタン
---------------------------------- */
a.cv-btn {
  position: relative;
  display: flex;
  padding: 18px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  font-size: 18px;
  width: 100%;
  height: 80px;
  border-radius: 100px;
  background: var(--Light-Button-Normal, #146EB8);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  color: var(--Light-Text-On-Fill, #fff);
  line-height: 1;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  a.cv-btn {
    width: 645px;
    height: 90px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  a.cv-btn {
    width: 665px;
    height: 92px;
    padding: 20px 10px;
  }
}
a.cv-btn .free {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 2px 8px 4px;
  border-radius: 48px;
  background: #FFFFFF;
  color: var(--Light-Text-Accent, #146EB8);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  a.cv-btn .free {
    font-size: 21px;
    padding: 4px 12px 5px 12px;
  }
}

a.cv-btn:hover {
  background: var(--Primitive-Colors-Sky-700, #177CD0);
}

a.cv-btn::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/pc/common/arrow-icon.svg");
  background-size: cover;
}
@media screen and (min-width: 768px) {
  a.cv-btn::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
  }
}

@media screen and (min-width: 768px) {
  a.cv-btn:hover::after {
    right: 20px;
  }
}

/* ----------------------------------
CVボタン-アニメーション
---------------------------------- */
a,
.header-cv-area li,
a.cv-btn,
a.cv-btn::after,
a.more-news::before {
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

/* ----------------------------------
wrap
---------------------------------- */
.wrap {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .wrap {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1280px) {
  .wrap {
    width: 1280px;
    margin: 0 auto;
  }
}

/* ----------------------------------
下層ページページタイトルエリア
---------------------------------- */
.header-ttl-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background: var(--Light-Background-Primary, #FFF);
}
@media screen and (min-width: 768px) {
  .header-ttl-area {
    padding: 57px 0 59px;
    gap: 2px;
  }
}
.header-ttl-area h1 {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header-ttl-area h1 {
    font-size: 24px;
  }
}
.header-ttl-area .ruby {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-ttl-area .ruby {
    font-size: 16px;
  }
}

/* ----------------------------------
お問い合わせ
---------------------------------- */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 74px 15px 78px;
  background: var(--Light-Background-Secondary, #F7F8FA);
  /* ----------------------------------
  お問い合わせフォーム-submitボタン
  ---------------------------------- */
  /*デフォルトのスタイルを無効化する*/
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1280px) {
  .contact {
    padding: 93px 0 120px;
  }
}
@media screen and (min-width: 768px) {
  .contact .contact-wrap {
    width: 100%;
  }
}
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact .lead_msg {
  font-weight: 700;
}
.contact .attention {
  color: var(--Light-Text-Accent, #146EB8);
}
.contact p {
  text-align: center;
  font-size: 16px;
}
.contact .lead_msg {
  margin-bottom: 13px;
  font-size: 18px;
}
@media screen and (min-width: 1280px) {
  .contact .lead_msg {
    font-size: 24px;
  }
}
.contact .inner {
  box-sizing: border-box;
  padding: 40px 15px;
  background: var(--Light-Background-Primary, #fff);
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact .inner {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .contact .inner {
    width: 936px;
    padding: 80px 40px;
  }
}
.contact .wpcf7 input[name=your-name],
.contact .wpcf7 input[name=your-email],
.contact .wpcf7 input[name=your-phone],
.contact .wpcf7 input[name=your-subject],
.contact .wpcf7 radio[name=your-work],
.contact .wpcf7 textarea[name=your-message] {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--Light-Form-Field, #DADADA);
  height: 58px;
  font-size: 18px;
}
.contact input::-moz-placeholder {
  color: var(--Light-Form-Placeholder, #D0D1D0);
  font-weight: 400;
}
.contact input::placeholder {
  color: var(--Light-Form-Placeholder, #D0D1D0);
  font-weight: 400;
}
.contact .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact .wpcf7-radio {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact .wpcf7 .Form {
  display: flex;
  flex-direction: column;
  gap: 33px;
  margin-top: 13px;
}
.contact .Form-Item p {
  width: 100%;
  text-align: left;
}
.contact input[type=text] {
  width: 100%;
}
.contact .Form-Item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.contact .Form-Item-Label {
  font-weight: 700;
  display: flex;
  gap: 10px;
  line-height: 1;
  align-items: center;
}
.contact span.Form-Item-Label-Required {
  display: inline-flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--Primitive-Colors-Sky-800, #146EB8);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.contact input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contact span.wpcf7-spinner {
  display: none;
}
.contact input[type=submit] {
  position: relative;
  display: flex;
  padding: 18px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  font-size: 16px;
  width: 100%;
  border-radius: 100px;
  background: var(--Light-Button-Normal, #146EB8);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  color: var(--Light-Text-On-Fill, #fff);
  line-height: 1;
  font-weight: 700;
  margin: 0 auto;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .contact input[type=submit] {
    width: 100%;
    height: 90px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .contact input[type=submit] {
    width: 665px;
    height: 92px;
    padding: 20px 10px;
  }
}
.contact input[type=submit]:hover {
  background: var(--Primitive-Colors-Sky-700, #177CD0);
}

/* ----------------------------------
テーマデフォルトスタイル打ち消し設定
---------------------------------- */
div#content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

div#breadcrumb {
  display: none;
}

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

---------------------------------- */
.template-original-top {
  position: relative;
  /* ----------------------------------
  セクション
  ---------------------------------- */
  /* ----------------------------------
  共通
  ---------------------------------- */
  /* ----------------------------------
  MV
  ---------------------------------- */
  /* ----------------------------------
  キャンペーン
  ---------------------------------- */
  /* ----------------------------------
  インフォメーション
  ---------------------------------- */
  /* ----------------------------------
  サービス
  ---------------------------------- */
  /* ----------------------------------
  運送デザインの強み
  ---------------------------------- */
  /* ----------------------------------
  運送ニュース
  ---------------------------------- */
}
.template-original-top section {
  padding: 60px 0;
}
.template-original-top section .wrap {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .template-original-top section .wrap {
    width: auto;
    max-width: 748px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top section .wrap {
    max-width: 1280px;
    width: 1280px;
    justify-content: center;
  }
}
.template-original-top .lead_msg {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .template-original-top .lead_msg {
    font-size: 20px;
  }
}
.template-original-top .lead_msg .attention {
  color: #146EB8;
  font-weight: 700;
}
.template-original-top .mv {
  position: relative;
  padding: 30px 20px 14px;
  background: url("../img/sp/fv/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  /* アニメーション */
  /* ドットのオーバーレイ */
}
@media screen and (min-width: 768px) {
  .template-original-top .mv {
    padding: 50px 0 71px;
    background: url("../img/tb/fv/bg.png");
    background-size: cover;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv {
    padding: 0;
    background: var(--Light-Background-Accent, #146EB8);
  }
}
.template-original-top .mv .sub-catch {
  display: none;
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv .sub-catch {
    display: block;
    position: absolute;
    right: 7vw;
    bottom: 13vh;
    z-index: 22;
    width: 32%;
  }
}
.template-original-top .mv .main_imgBox {
  display: none;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv .main_imgBox {
    display: block;
  }
}
.template-original-top .mv .sp-mv-img {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv .sp-mv-img {
    display: none;
  }
}
.template-original-top .mv .main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100vh;
  max-height: 1160px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 18s 0s infinite;
}
.template-original-top .mv .main_img:nth-of-type(2) {
  animation-delay: 6s;
}
.template-original-top .mv .main_img:nth-of-type(3) {
  animation-delay: 12s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.template-original-top .mv .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/pc/fv/dot_bg.svg);
  background-size: 10px 10px;
  pointer-events: none;
  /* オーバーレイの上でクリックができるように */
  z-index: 11;
}
.template-original-top .mv .main_imgBox_wrap {
  position: relative;
}
.template-original-top .mv .pc-fixed-img {
  display: none;
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv .pc-fixed-img {
    display: block;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 14;
    width: 55%;
  }
}
.template-original-top .mv-frame {
  display: none;
}
@media screen and (min-width: 1280px) {
  .template-original-top .mv-frame {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 13;
  }
}
.template-original-top .campaign {
  position: relative;
  padding-top: 26px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign {
    padding-top: 0;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 102px;
    z-index: 20;
  }
}
.template-original-top .campaign .wrap {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .wrap {
    padding: 0;
  }
}
.template-original-top .campaign .campaign-box {
  position: relative;
  background: var(--Light-Background-Secondary, #F7F8FA);
  box-shadow: 0px 9px 22px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box {
    transform: translateY(-5vh);
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box {
    transform: translateY(0);
  }
}
.template-original-top .campaign .campaign-box .ttl {
  display: flex;
  padding: 25px 15px 9px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px 20px 0px 0px;
  background: var(--unnamed, linear-gradient(129deg, #146EB8 31.63%, #80D0C7 122.22%));
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .ttl {
    padding: 19px 0 6px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .ttl {
    padding: 27px 0 12px;
  }
}
.template-original-top .campaign .campaign-box .ttl img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .template-original-top .campaign .campaign-box .ttl img {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .ttl img {
    width: 550px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .ttl img {
    width: 740px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .img {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .img {
    display: block;
    width: 420px;
  }
}
.template-original-top .campaign .campaign-box .contents {
  position: relative;
  padding: 10px;
  border-radius: 0px 0px 20px 20px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .contents {
    padding: 0;
  }
}
.template-original-top .campaign .campaign-box .inner {
  border-radius: 24px;
  padding: 10px 10px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--Light-Background-Primary, #FFF);
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .inner {
    padding: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .inner {
    flex-direction: row;
    padding: 30px 100px;
    gap: 45px;
  }
}
.template-original-top .campaign .campaign-box .icon {
  position: absolute;
  left: -12px;
  top: -19px;
  width: 118px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .icon {
    width: 220px;
    left: -20px;
    top: -24px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .icon {
    width: 200px;
    left: 24px;
    top: -170px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .right-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .right-wrap {
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .tb-wrap {
    display: flex;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .icon-02 {
    width: 96px;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .txt {
    width: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .txt {
    width: 612px;
  }
}
.template-original-top .campaign .campaign-box .cv-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.template-original-top .campaign .campaign-box .cv-btn {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .cv-btn {
    font-size: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .template-original-top .campaign .campaign-box .free {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .template-original-top .campaign .campaign-box a.cv-btn::after {
    display: none;
  }
}
.template-original-top .campaign .campaign-box .note {
  font-size: 9px;
}
@media screen and (min-width: 768px) {
  .template-original-top .campaign .campaign-box .note {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .campaign .campaign-box .note {
    text-align: center;
  }
}
.template-original-top .info {
  padding-bottom: calc(20% + 130px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .template-original-top .info {
    padding-bottom: calc(20% + 180px);
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .info {
    position: relative;
    padding-top: 0;
    height: 1120px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: -210px auto 0;
  }
}
@media screen and (min-width: 2560px) {
  .template-original-top .info {
    max-width: initial;
  }
}
.template-original-top .info .info-mv {
  display: none;
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .info-mv {
    display: block;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 65vw;
    z-index: 1;
    max-width: 1100px;
  }
}
@media screen and (min-width: 1920px) {
  .template-original-top .info .info-mv {
    max-width: 1200px;
  }
}
@media screen and (min-width: 2560px) {
  .template-original-top .info .info-mv {
    right: 150px;
    max-width: 1230px;
  }
}
.template-original-top .info h2 {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .template-original-top .info h2 {
    text-align: left;
    font-size: 53px;
  }
}
.template-original-top .info .catch {
  text-align: center;
  line-height: 2;
  font-weight: 700;
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .template-original-top .info .catch {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .catch {
    text-align: left;
  }
}
.template-original-top .info .desc {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .template-original-top .info .desc {
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .desc {
    text-align: left;
  }
}
.template-original-top .info .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 15px 290px;
  background: url(../img/sp/info/info-img.png);
  background-repeat: no-repeat;
  background-position: 52% 480px;
  background-size: 500px;
}
@media screen and (min-width: 768px) {
  .template-original-top .info .inner {
    background-size: 840px;
    background-position: center 200px;
    padding: 0 50px 470px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .inner {
    width: 1280px;
    background: none;
    padding: 0;
    padding-top: 270px;
    margin: 0 auto;
  }
}
.template-original-top .info .wrap {
  overflow-x: hidden;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .template-original-top .info .wrap {
    max-width: inherit;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 70px;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.template-original-top .info .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  opacity: 0.5;
}
.template-original-top .info .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 6px;
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .scroll-infinity__list {
    gap: 15px;
  }
}
.template-original-top .info .scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}
.template-original-top .info .scroll-infinity__item {
  width: 190px;
}
@media screen and (min-width: 1280px) {
  .template-original-top .info .scroll-infinity__item {
    width: 20vw;
  }
}
@media screen and (min-width: 1921px) {
  .template-original-top .info .scroll-infinity__item {
    width: 20vw;
    max-width: 354px;
  }
}
.template-original-top .info .scroll-infinity__item > img {
  width: 100%;
}
.template-original-top .service {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--Light-Background-Accent, #146EB8);
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service {
    padding: 0 0 80px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service {
    padding: 120px 0 123px;
    background: url(../img/pc/service/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
@media screen and (min-width: 1920px) {
  .template-original-top .service {
    background-position: center 80%;
  }
}
.template-original-top .service::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  padding-top: 20%;
  background: url(../img/sp/service/bg-top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -20%;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .template-original-top .service::after {
    display: none;
  }
}
.template-original-top .service .wrap {
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 53px 15px 60px;
  margin-top: 19px;
  box-shadow: 0px 20px 24px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .template-original-top .service .wrap {
    margin-top: 5%;
    width: 100%;
    padding: 60px 50px;
    gap: 0;
    border-radius: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .wrap {
    margin-top: 0;
    width: 1280px;
    padding: 33px 50px 60px;
  }
}
.template-original-top .service .truck_wrap {
  z-index: 1;
  margin: -49% auto 0;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .truck_wrap {
    margin: -26% auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .truck_wrap {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .pc-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.template-original-top .service .truck {
  width: 257px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .truck {
    width: 346px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .truck {
    width: 438px;
  }
}
.template-original-top .service .ttl-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .ttl-area {
    gap: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .ttl-area {
    align-items: flex-start;
  }
}
.template-original-top .service .ttl-area h2 {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .ttl-area h2 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .service .lead_msg {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .lead_msg {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.template-original-top .service .main-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service {
    width: 100%;
    gap: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service {
    gap: 28px;
    flex-direction: row;
    width: auto;
  }
}
.template-original-top .service .main-service img {
  width: 280px;
  max-width: inherit;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service img {
    width: 460px;
    gap: 30px;
  }
}
.template-original-top .service .main-service h3 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service h3 {
    text-align: left;
  }
}
.template-original-top .service .main-service ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service ul {
    gap: 0;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service ul {
    flex-direction: row;
    gap: 36px;
  }
}
.template-original-top .service .main-service ul li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service ul li {
    width: 50%;
    gap: 18px;
  }
}
.template-original-top .service .main-service ul li .inner {
  position: relative;
  z-index: 0;
  display: flex;
  padding: 20px 15px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  background: var(--Light-Background-Primary, #FFF);
  /* ドロップシャドウ */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service ul li .inner {
    padding: 30px;
    transform: translateY(-35px);
    width: 100%;
    gap: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service ul li .inner {
    gap: 8px;
    border-radius: 20px;
  }
}
.template-original-top .service .main-service ul .osusume {
  display: flex;
  padding: 4px 19px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border-radius: 40px;
  background: var(--unnamed, linear-gradient(129deg, #146EB8 31.63%, #80D0C7 122.22%));
  text-shadow: 0px 0px 9px #146EB8;
  color: var(--Light-Text-On-Fill, #FFF);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .main-service ul .osusume {
    width: 450px;
    margin: 0 auto;
    font-size: 18px;
    padding: 4px 20px 5px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .main-service ul .osusume {
    margin: 0;
    width: 430px;
    padding: 1px 20px 2px 20px;
  }
}
.template-original-top .service .sub-service {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .sub-service {
    gap: 16px;
  }
}
.template-original-top .service .sub-service ul.top,
.template-original-top .service .sub-service ul.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .template-original-top .service .sub-service ul.top,
  .template-original-top .service .sub-service ul.bottom {
    flex-direction: row;
    gap: 16px;
  }
}
.template-original-top .service .sub-service ul.top li,
.template-original-top .service .sub-service ul.bottom li {
  display: flex;
  padding: 20px 15px;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  border-radius: 12px;
  background: var(--Light-Background-Primary, #FFF);
  align-self: stretch;
  /* ドロップシャドウ */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .template-original-top .service .sub-service ul.top li,
  .template-original-top .service .sub-service ul.bottom li {
    padding: 24px;
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .sub-service ul.top li,
  .template-original-top .service .sub-service ul.bottom li {
    flex-direction: row;
    width: 50%;
    border-radius: 20px;
  }
}
.template-original-top .service .sub-service ul.top .inner,
.template-original-top .service .sub-service ul.bottom .inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .sub-service ul.top .inner,
  .template-original-top .service .sub-service ul.bottom .inner {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .service .sub-service h4 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .template-original-top .service .sub-service h4 span {
    font-size: 13px;
  }
}
.template-original-top .service .sub-service img {
  width: 100px;
  height: 100px;
}
.template-original-top .strengths {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--Light-Background-Accent, #146EB8);
  padding: 40px 0 10px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths {
    padding: 0 0 50px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths {
    padding: 17px 0 120px;
  }
}
.template-original-top .strengths .wrap {
  display: flex;
  flex-direction: column;
  gap: 89px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 59px 15px;
  box-shadow: 0px 20px 24px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths .wrap {
    max-width: inherit;
    width: 100%;
    padding: 59px 50px 62px;
    gap: 80px;
    border-radius: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths .wrap {
    max-width: inherit;
    width: 1280px;
    gap: 80px;
    padding: 60px;
  }
}
.template-original-top .strengths .ttl-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths .ttl-area {
    gap: 15px;
  }
}
.template-original-top .strengths .txt-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths .txt-area {
    gap: 16px;
  }
}
.template-original-top .strengths ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths ul {
    gap: 55px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths ul {
    width: 100%;
    flex-direction: row;
    gap: 40px;
  }
}
.template-original-top .strengths ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths ul li {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths ul li {
    flex-direction: column;
    align-items: center;
  }
}
.template-original-top .strengths ul .img {
  width: 200px;
  height: 200px;
}
.template-original-top .strengths ul .num {
  position: absolute;
  left: 10px;
  top: 0;
  height: 43px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths ul .num {
    width: 72px;
    left: 0;
    max-width: inherit;
    top: -2px;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths ul .num {
    width: 72px;
    left: 23px;
  }
}
.template-original-top .strengths ul h3 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths ul h3 {
    font-size: 24px;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .strengths ul h3 {
    text-align: center;
  }
}
.template-original-top .strengths ul .big {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .template-original-top .strengths ul .big {
    font-size: 32px;
  }
}
.template-original-top .news {
  padding: 29% 15px 60px;
  background: url(../img/sp/news/bg-top.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (min-width: 1280px) {
  .template-original-top .news {
    padding: 250px 50px 50px;
    background: url(../img/pc/news/bg-top.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
@media screen and (min-width: 1920px) {
  .template-original-top .news {
    padding: 400px 50px 50px;
  }
}
.template-original-top .news .inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .template-original-top .news .inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  .template-original-top .news .inner {
    margin-bottom: 80px;
  }
}
.template-original-top .news .inner .ttl-area {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .template-original-top .news .inner .ttl-area {
    gap: 30px;
  }
}
.template-original-top .news .inner a.more-news {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 700;
}
.template-original-top .news .inner a.more-news::before {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/sp/news/arrow.svg);
  background-size: 100%;
}
.template-original-top .news .inner a.more-news:hover::before {
  transform: translateX(10px);
}

/* ----------------------------------
お問い合わせ
---------------------------------- */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 74px 15px 78px;
  background: var(--Light-Background-Secondary, #F7F8FA);
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1280px) {
  .contact {
    padding: 93px 0 120px;
  }
}
@media screen and (min-width: 768px) {
  .contact .wrap {
    width: 100%;
  }
}
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact p {
  text-align: center;
  font-size: 16px;
}
.contact .lead_msg {
  margin-bottom: 13px;
  font-size: 18px;
}
@media screen and (min-width: 1280px) {
  .contact .lead_msg {
    font-size: 24px;
  }
}

/* ----------------------------------
LINECVバーエリア
---------------------------------- */
.line-cv-bar {
  display: none;
}
@media screen and (min-width: 768px) {
  .line-cv-bar {
    display: block;
    z-index: 30;
    position: absolute;
    top: 120px;
    right: 0;
    width: 69px;
    height: 411px;
    overflow: hidden;
  }
}
.line-cv-bar:hover .txt {
  background: #0fc546;
}
.line-cv-bar .txt {
  position: absolute;
  border-radius: 10px 0 0 10px;
  background: #07B53B;
  width: 54px;
  height: 353px;
  box-sizing: border-box;
  right: 0;
  top: 0;
  transition: 0.5s;
}
.line-cv-bar .txt img {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 36px;
}
.line-cv-bar .hand {
  position: absolute;
  bottom: 41px;
  right: -11px;
  width: 93px;
}

/* ----------------------------------
スクロール
---------------------------------- */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.type {
  display: none;
}
@media screen and (min-width: 1280px) {
  .type {
    display: block;
    position: absolute;
    z-index: 16;
    width: 100%;
    height: calc(100vh - 95px);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 1160px;
  }
}
.type p {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: #fff;
  font: normal 300 64px/1 "Josefin Sans", sans-serif;
  text-align: center;
  white-space: nowrap;
}

.type a {
  display: inline-block;
  position: absolute;
  right: 30px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
}
.type a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}
.type a:hover {
  opacity: 0.5;
}

#type01 a::after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#type02 a::after {
  animation: sdl02 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl02 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  25% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  25.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  40%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#type03 a::after {
  animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl03 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#type04 a::after {
  animation: sdl04 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl04 {
  0% {
    opacity: 1;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  30.1%, 70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#type05 a::after {
  height: 30px;
  animation: sdl05 1.5s ease infinite;
}

@keyframes sdl05 {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}
#type06 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}
#type06 a::after {
  animation: sdl06 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl06 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#type07 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}
#type07 a::after {
  height: 30px;
  animation: sdl07 1.5s ease infinite;
}

@keyframes sdl07 {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}/*# sourceMappingURL=top.css.map */