/* -------------------------------------------- */
/* ------------------- inter ------------------ */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");
/* regular */
/* medium */
/* bold */
/* extrabold */
/* -------------------------------------------- */
/* ---------------- Noto Sans JP -------------- */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* medium */
/* bold */
/* ----- break point ----- */
/* ----- container width ----- */
/* ----- margin-top/bottom ----- */
/* ----- padding-top/bottom ----- */
/* ----- line-height, letter-spacing ----- */
/* ----- font-size ----- */
.is-animation {
  -webkit-animation: fadezoom 12s 0s forwards;
          animation: fadezoom 12s 0s forwards;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.js-fadeup {
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  -webkit-transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.js-fadeup.is-inview {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

a {
  color: #333;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

path {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

ul {
  list-style: none;
}

html {
  word-wrap: break-word;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  background-color: #79ACD9;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

p {
  line-height: 1.875;
}

@media only screen and (max-width: 600px) {
  p {
    font-size: 14px;
  }
}

.main .breadcrumb {
  padding-right: 5%;
  padding-left: 5%;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .main .breadcrumb {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .breadcrumb {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media only screen and (max-width: 600px) {
  .main .breadcrumb {
    margin-top: 15px;
  }
}

.main .breadcrumb .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .breadcrumb .container .list {
  text-align: left;
}

.main .breadcrumb .container .list .item {
  display: inline-block;
}

.main .breadcrumb .container .list .item:not(:last-of-type):after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 8px;
  margin: 0 5px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  background-image: url(../images/icon/common/breadcrumb.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.main .breadcrumb .container .list .item a {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .breadcrumb .container .list .item a {
    font-size: 12px;
  }
}

@media (hover: hover) {
  .main .breadcrumb .container .list .item a:hover {
    color: #79ACD9;
  }
}

@media (hover: none) {
  .main .breadcrumb .container .list .item a:active {
    color: #79ACD9;
  }
}

.main .breadcrumb .container .list .item span {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .breadcrumb .container .list .item span {
    font-size: 12px;
  }
}

.main .l-fv {
  padding-top: 270px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1440px) {
  .main .l-fv {
    padding-top: 250px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .l-fv {
    padding-top: 180px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-fv {
    padding-top: 140px;
  }
}

@media only screen and (max-width: 400px) {
  .main .l-fv {
    padding-top: 118px;
  }
}

@media only screen and (max-width: 768px) {
  .main .l-fv {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-fv {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .l-fv .container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: 360px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .main .l-fv .container {
    height: 180px;
  }
}

.main .l-fv .container.company {
  background-image: url(../images/fv/company/fv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main .l-fv .container.privacy, .main .l-fv .container.notfound {
  background-image: url(../images/fv/privacy/fv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main .l-fv .container.news, .main .l-fv .container.single, .main .l-fv .container.category {
  background-image: url(../images/fv/news/fv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main .l-fv .container .ttl {
  text-align: center;
}

.main .l-fv .container .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .l-fv .container .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .l-fv .container .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-fv .container .ttl span.en {
    font-size: 30px;
  }
}

.main .l-fv .container .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .l-fv .container .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-fv .container .ttl span.ja {
    font-size: 16px;
  }
}

.main .to-contact {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 130px;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .to-contact {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 400px) {
  .main .to-contact {
    padding-bottom: 70px;
  }
}

.main .to-contact .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .to-contact .container .head .ttl {
  text-align: center;
}

.main .to-contact .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .to-contact .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .to-contact .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .to-contact .container .list {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list {
    display: block;
  }
}

.main .to-contact .container .list .item {
  width: calc(50% - 30px);
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item {
    width: 100%;
  }
}

.main .to-contact .container .list .item.only {
  width: 100%;
  max-width: 555px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item:last-of-type {
    margin-top: 50px;
  }
}

.main .to-contact .container .list .item p {
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item p {
    font-size: 14px;
  }
}

.main .to-contact .container .list .item p span {
  font-size: 32px;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item p span {
    font-size: 20px;
  }
}

.main .to-contact .container .list .item .link {
  margin-top: 45px;
  height: 85px;
  border-radius: 8px;
  display: block;
}

@media (hover: hover) {
  .main .to-contact .container .list .item .link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .to-contact .container .list .item .link:hover .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (hover: none) {
  .main .to-contact .container .list .item .link:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .to-contact .container .list .item .link:active .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item .link {
    max-width: 555px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item .link {
    margin-top: 20px;
  }
}

.main .to-contact .container .list .item .link.line {
  background-color: #00B900;
}

.main .to-contact .container .list .item .link.towing {
  background-color: #E52D8A;
}

.main .to-contact .container .list .item .link .link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .to-contact .container .list .item .link .link__inner .icon {
  margin-right: 10px;
  width: 30px;
}

.main .to-contact .container .list .item .link .link__inner .icon svg {
  display: block;
  width: 100%;
}

.main .to-contact .container .list .item .link .link__inner .txt {
  font-size: 16px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item .link .link__inner .txt {
    font-size: 14px;
  }
}

.main .l-news {
  margin-top: 80px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .l-news {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-news {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .main .l-news {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-news {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .l-news .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .l-news .container .cat .list .item {
  display: inline-block;
}

.main .l-news .container .cat .list .item:not(:last-of-type) {
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .main .l-news .container .cat .list .item:not(:last-of-type) {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .main .l-news .container .cat .list .item:not(:last-of-type) {
    margin-right: 10px;
  }
}

.main .l-news .container .cat .list .item .name {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  position: relative;
  font-size: 16px;
  padding-bottom: 4px;
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .cat .list .item .name {
    font-size: 12px;
  }
}

.main .l-news .container .cat .list .item .name:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background-color: #E52D8A;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .l-news .container .cat .list .item .name.is-inview:before {
  opacity: 1;
}

@media (hover: hover) {
  .main .l-news .container .cat .list .item .name:hover:before {
    opacity: 1;
  }
}

@media (hover: none) {
  .main .l-news .container .cat .list .item .name:active:before {
    opacity: 1;
  }
}

.main .l-news .container .article {
  margin-top: 30px;
}

.main .l-news .container .article .list .item:last-of-type .link {
  border-bottom: 3px solid #707070;
}

@media (hover: hover) {
  .main .l-news .container .article .list .item:last-of-type .link:hover {
    border-bottom: 3px solid #79ACD9;
  }
}

@media (hover: none) {
  .main .l-news .container .article .list .item:last-of-type .link:active {
    border-bottom: 3px solid #79ACD9;
  }
}

.main .l-news .container .article .list .item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
  border-top: 3px solid #707070;
  padding-right: 10%;
  position: relative;
}

@media only screen and (max-width: 1250px) {
  .main .l-news .container .article .list .item .link {
    height: 100px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link {
    display: block;
    height: initial;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (hover: hover) {
  .main .l-news .container .article .list .item .link:hover {
    background-color: #79ACD9;
    border-top: 1px solid #79ACD9;
  }
  .main .l-news .container .article .list .item .link:hover .info .cat {
    color: #fff;
    border: 1px solid #fff;
  }
  .main .l-news .container .article .list .item .link:hover .info .date {
    color: #fff;
  }
  .main .l-news .container .article .list .item .link:hover .ttl {
    color: #fff;
  }
  .main .l-news .container .article .list .item .link:hover .icon svg path {
    fill: #fff;
  }
}

@media (hover: none) {
  .main .l-news .container .article .list .item .link:active {
    background-color: #79ACD9;
    border-top: 1px solid #79ACD9;
  }
  .main .l-news .container .article .list .item .link:active .info .cat {
    color: #fff;
    border: 1px solid #fff;
  }
  .main .l-news .container .article .list .item .link:active .info .date {
    color: #fff;
  }
  .main .l-news .container .article .list .item .link:active .ttl {
    color: #fff;
  }
  .main .l-news .container .article .list .item .link:active .icon svg path {
    fill: #fff;
  }
}

.main .l-news .container .article .list .item .link .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 210px;
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .info {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.main .l-news .container .article .list .item .link .info .cat {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #707070;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-right: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .info .cat {
    font-size: 12px;
  }
}

.main .l-news .container .article .list .item .link .info .date {
  display: inline-block;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .l-news .container .article .list .item .link .ttl {
  display: inline-block;
  width: calc(100% - 250px);
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .ttl {
    margin-top: 20px;
    width: 100%;
  }
}

.main .l-news .container .article .list .item .link .ttl .icon-news {
  display: block;
  width: 36px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(100% + 20px);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .ttl .icon-news {
    display: inline-block;
    padding-right: 30px;
  }
}

.main .l-news .container .article .list .item .link .icon {
  position: absolute;
  z-index: 1;
  top: calc(50% - 8px);
  right: calc(5% - 12px);
  display: block;
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .icon {
    right: calc(5% - 8px);
    width: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .main .l-news .container .article .list .item .link .icon svg {
    display: block;
    width: 100%;
  }
}

.main .l-news .container .article .list .a-pagination {
  margin-top: 50px;
}

.main .l-news .container .article .list .a-pagination .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .l-news .container .article .list .a-pagination .paging .pager {
  display: block;
  margin-right: 10px;
}

.main .l-news .container .article .list .a-pagination .paging .pager.current {
  color: #79ACD9;
}

.main .l-news .container .article .list .a-pagination .paging .pager.next {
  margin-right: 0;
}

@media (hover: hover) {
  .main .l-news .container .article .list .a-pagination .paging a:hover {
    color: #79ACD9;
  }
  .main .l-news .container .article .list .a-pagination .paging a:hover svg path {
    stroke: #79ACD9;
  }
}

@media (hover: none) {
  .main .l-news .container .article .list .a-pagination .paging a:active {
    color: #79ACD9;
  }
  .main .l-news .container .article .list .a-pagination .paging a:active svg path {
    stroke: #79ACD9;
  }
}
/*# sourceMappingURL=news.css.map */