@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 16px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 100px 0 115px;
  position: relative;
}
main section.stb {
  padding: 120px 0;
}
@media (max-width: 550px) {
  main section {
    padding: 60px 0 70px;
  }
  main section.stb {
    padding: 65px 0;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
.rounded img {
  border-radius: 10px;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.45em;
  text-decoration-color: rgba(255, 239, 135, 0.55);
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}
.white, .white span {
  color: #fff !important;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  display: block;
  text-align: center;
  line-height: 0.55;
  position: relative;
  font-size: clamp(3rem, 2rem + 3.2vw, 3.8rem);
  font-weight: 700;
}
.maintitle .mf {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.015em;
  color: #4c99a3;
  font-family: "Oleo Script", serif;
  font-weight: 700;
}
.mf span:first-of-type {
  text-transform: capitalize;
  color: #193e7d;
}
section:nth-child(2n) .mf span:first-of-type {
  color: #692b6d;
}
.maintitle .sf {
  font-size: 35%;
}
.maintitle.mtleft {
  text-align: left;
  margin-left: 0;
}
.txtmgb {
  margin-bottom: 35px !important;
}
@media (max-width: 750px) {
  .maintitle.mtleft.spcenter {
    margin-left: auto;
  }
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 40px;
  }
  .txtmgb {
    margin-bottom: 30px !important;
  }
}
/**/
.rotation {
  position: absolute;
  top: 42%;
  left: -50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 190px;
  aspect-ratio: 1 / 1;
  opacity: 0.2;
  filter: invert(85%) sepia(41%) saturate(184%) hue-rotate(124deg) brightness(86%) contrast(92%);
}
.mtleft .rotation {
  left: -30%;
}
.rotation img {
  width: 100%;
  animation: rotateanim 65s linear infinite normal;
}
@keyframes rotateanim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 550px) {
  .rotation {
    width: 150px;
  }
}
/*見出しアニメーション*/
.mf span {
  display: inline-block;
  opacity: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.mf.inview span {
  animation: textfadein 2.3s ease forwards;
}
.mf.inview span:nth-child(1) {
  animation-delay: 0.1s;
}
.mf.inview span:nth-child(2) {
  animation-delay: 0.25s;
}
.mf.inview span:nth-child(3) {
  animation-delay: 0.4s;
}
.mf.inview span:nth-child(4) {
  animation-delay: 0.55s;
}
.mf.inview span:nth-child(5) {
  animation-delay: 0.7s;
}
.mf.inview span:nth-child(6) {
  animation-delay: 0.85s;
}
.mf.inview span:nth-child(7) {
  animation-delay: 0.9s;
}
.mf.inview span:nth-child(8) {
  animation-delay: 1.05s;
}
.mf.inview span:nth-child(9) {
  animation-delay: 1.3s;
}
.mf.inview span:nth-child(10) {
  animation-delay: 1.45s;
}
.mf.inview span:nth-child(11) {
  animation-delay: 1.6s;
}
.mf.inview span:nth-child(12) {
  animation-delay: 1.75s;
}
.mf.inview span:nth-child(13) {
  animation-delay: 1.9s;
}
.mf.inview span:nth-child(14) {
  animation-delay: 2.05s;
}
.mf.inview span:nth-child(15) {
  animation-delay: 2.3s;
}
@keyframes textfadein {
  0% {
    opacity: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
/*02*/
.mtitle {
  font-weight: 700;
  position: relative;
  border-radius: 3px;
  margin-bottom: 17px;
  letter-spacing: 0.1em;
  font-size: clamp(1.15rem, 0.775rem + 1.2vw, 1.45rem);
  line-height: 1.7;
  background: #4c99a3;
  color: #fff;
  padding: 13px 25px 15px 12px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
@media (max-width: 550px) {
  .mtitle {
    margin-bottom: 15px;
  }
}
/*03*/
.stitle {
  font-weight: 500;
  position: relative;
  font-size: clamp(1.15rem, 0.775rem + 1.2vw, 1.45rem);
  padding-left: 2px;
  line-height: 1.65;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 3px solid #ebebeb;
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 55px;
  height: 3px;
  background: #9ecfcb;
}
.stitle .en {
  display: block;
  color: #4c99a3;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 60%;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  margin-bottom: 5px;
}
.stitle .en span {
  font-size: 120%;
}
/* ボタン */
.mainbtn a {
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  padding: 21px;
  display: inline-block;
  width: 280px;
  text-align: center;
  color: #fff;
  background: #4c99a3;
  border: 2px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
  overflow: hidden;
  border-radius: 50px;
  font-weight: 700;
}
.mainbtn a:hover {
  border: 2px solid #4c99a3;
  color: #4c99a3;
  background: #fff;
}
/*点線*/
.mainbtn a::after {
  content: '';
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed #fff;
  pointer-events: none;
  border-radius: 50px;
  opacity: 0.6;
}
.mainbtn a:hover::after {
  border: 1px dashed #4c99a3;
}
/**/
section .mainbtn a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: bold;
  line-height: 1;
  transform: translate(0, -50%);
  color: #fff;
  transition: .4s all;
}
.mainbtn a:hover::before {
  color: #4c99a3;
}
/**/
.tbtn {
  margin-top: 37px;
}
@media (max-width: 550px) {
  .mainbtn {
    margin: auto;
  }
  .mainbtn a {
    width: 230px;
    padding: 20px 0;
  }
  .tbtn {
    margin-top: 30px;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 35px;
  }
  .spmgb02 {
    margin-bottom: 15px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto.w48, .mauto.w43 {
    width: 100%;
  }
}
.w65 {
  width: 65%;
}
.w52 {
  width: 52%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
/*background*/
.bg_blue {
  position: relative;
}
.bg_blue::after, .bg_blue::before {
  pointer-events: none;
}
.bg_blue::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #9ecfcb, #72acad, #4c99a3);
  z-index: -101;
}
.bg_blue::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/bg.svg) repeat;
  background-size: 170px;
  background-position: center;
  z-index: -100;
  opacity: 0.1;
  filter: brightness(0) invert(1);
}
/**/
.imgbg_r, .imgbg_l {
  position: relative;
}
.imgbg_r::after, .imgbg_l::after {
  content: '';
  top: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: -1;
  background: url(../img/_bg/bg.svg) repeat;
  background-size: 170px;
  background-position: center;
  filter: invert(67%) sepia(5%) saturate(2077%) hue-rotate(132deg) brightness(95%) contrast(90%);
  opacity: 0.3;
}
.imgbg_r::after, .imgbg_r::before {
  right: -15px;
}
.imgbg_l::after, .imgbg_l::before {
  left: -15px;
}
.bg_blue .imgbg_r::after, .bg_blue .imgbg_l::after {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
@media (max-width: 550px) {
  .imgbg_r::after, .imgbg_l::after {
    top: 10px;
  }
  .imgbg_r::after, .imgbg_r::before {
    right: -7px;
  }
  .imgbg_l::after, .imgbg_l::before {
    left: -7px;
  }
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*delay*/
.delay01 {
  transition-delay: 0.45s;
}
.delay02 {
  transition-delay: 0.6s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/* 横に揺れる */
.moving {
  display: block;
  width: 100%;
  animation: movinganime 3s cubic-bezier(0.7, 0.02, 0, 0.97) infinite;
}
.moving.rev {
  animation-direction: reverse;
  animation-delay: 1.14s !important;
}
@keyframes movinganime {
  0% {
    transform: rotate(0deg)
  }
  20% {
    transform: rotate(0deg)
  }
  30% {
    transform: rotate(-7deg)
  }
  80% {
    transform: rotate(-7deg)
  }
  83% {
    transform: rotate(0deg)
  }
}
/* illust ==============================*/
.psr {
  position: relative;
}
/**/
.cars {
  display: flex;
  align-items: flex-end;
  width: 480px !important;
}
.cars img {
  width: calc(100% / 3 - 5%);
  margin: 0 3% 0;
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s, transform 0.9s;
}
.cars img:nth-child(1) {
  transition-delay: 0.25s;
}
.cars img:nth-child(2) {
  transition-delay: 0.45s;
}
.cars img:nth-child(3) {
  transition-delay: 0.6s;
}
.cars.inview img {
  opacity: 1;
  transform: translateX(0);
}
.cars.tl, .cars.bl {
  transform: scaleX(-1);
}
/**/
.tl, .tr, .bl, .br {
  position: absolute !important;
  z-index: 1;
  pointer-events: none;
}
.tl img, .tr img, .bl img, .br img {
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
.illust {
  width: 26% !important;
  max-width: 210px;
}
@media (max-width: 450px) {
  .illust {
    max-width: 130px;
    width: 38vw !important;
  }
}
/**/
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 33% !important;
  max-width: 170px;
}
/*位置*/
.tl {
  top: -60px;
  left: 1%;
}
.tr {
  top: -60px;
  right: 1%;
}
.bl {
  bottom: -60px;
  left: 1%;
}
.br {
  bottom: -60px;
  right: 1%;
}
.psr .tl {
  top: 0;
  left: 0;
}
.psr .tr {
  top: 0;
  right: 0;
}
.psr .bl {
  bottom: 0;
  left: 0;
}
.psr .br {
  bottom: 0;
  right: 0;
}
@media (max-width: 550px) {
  .cars {
    width: 270px !important;
  }
  .tl {
    top: -33px;
  }
  .tr {
    top: -33px;
  }
  .bl {
    bottom: -33px;
  }
  .br {
    bottom: -33px;
  }
  .illust.tl, .illust.tr {
    top: -43px;
  }
}
/* wave ==============================*/
.wave_sec {
  padding-bottom: 0 !important;
}
.wave {
  overflow: hidden;
  margin-top: 45px;
  pointer-events: none;
  width: 100%;
  height: 90px;
  position: relative;
}
.wave::before {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 1;
  background: url(../img/_bg/wave.svg);
  background-repeat: repeat-x;
  background-size: 100px;
  background-position: bottom;
  filter: invert(85%) sepia(41%) saturate(184%) hue-rotate(124deg) brightness(86%) contrast(92%);
  animation: wave 2s linear infinite;
}
.bg_blue .wave::before {
  filter: brightness(0) invert(1);
}
@-webkit-keyframes wave {
  0% {
    background-position: 0 top;
  }
  100% {
    background-position: -100px top;
  }
}
.wave::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 5px;
  right: -20px;
  background-image: url("../img/_illust/ship.svg");
  background-repeat: no-repeat;
  background-size: 150px;
  animation: ship 1.6s linear infinite;
}
@keyframes ship {
  0% {
    background-position: left bottom 75%;
  }
  50% {
    background-position: left bottom;
  }
  100% {
    background-position: left bottom 75%;
  }
}
@media (max-width: 690px) {
  .wave {
    height: 17vw;
    margin-top: 35px;
  }
  .wave::after {
    background-size: 28%;
  }
}
/*反転*/
.bgx::before, .bgx::after {
  pointer-events: none;
  transform: scaleX(-1);
}
.bgx.wave::after {
  right: 17px;
}
/* car ==============================*/
.loop_anime_sec {
  padding-bottom: 0 !important;
}
.loop_anime {
  position: relative;
  width: 100%;
  height: 80px;
  background: url(../img/_bg/road.svg);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: contain;
  margin-top: 50px;
  z-index: -1;
  /*animation: loop 130s linear reverse infinite;*/
}
.loop_anime::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 5px;
  right: 0;
  background-image: url("../img/_illust/truck01.svg");
  background-repeat: no-repeat;
  background-size: 140px;
  z-index: 3;
  animation: loop 30s linear infinite;
}
@keyframes loop {
  from {
    background-position: right -50% bottom;
  }
  to {
    background-position: left -50% bottom;
  }
}
@media (max-width: 850px) {
  .loop_anime::after {
    background-size: 21%;
    animation: loop 20s linear infinite;
  }
}
@media (max-width: 690px) {
  .loop_anime {
    height: 16vw;
    margin-top: 35px;
  }
}
.notruck.loop_anime::after {
  content: none;
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header_sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .4s all;
  padding: 10px 0;
}
.TopPage .header_sticky {
  position: fixed;
  padding: 10px 0 103px; /*hnav*/
}
.change {
  background: #fff;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.2);
}
.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.2);
}
.hamopen .sticky {
  position: fixed;
}
/*logo*/
.header h1 {
  line-height: 1;
}
.header_title {
  width: 235px;
}
.header_title a:hover {
  opacity: 0.6;
}
/**/
.header_nav {
  margin-left: auto;
}
.header_item {
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  width: fit-content;
}
.header_item > div {
  margin: 0 10px;
}
.header_item > div:last-of-type {
  margin-right: 0 !important;
}
.header_item .mainbtn a {
  width: 230px;
  line-height: 1;
  padding: 14px 0;
  font-size: 0.93rem;
}
/*tel*/
.tel {
  font-size: 1.65rem;
  line-height: 1.35;
}
.tel a {
  font-family: "Oleo Script", serif;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 2px;
}
.tel a i {
  font-size: 90%;
  color: #193e7d;
}
.tel:nth-child(2n) a i {
  color: #692b6d;
}
.tel a .telnote {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
  color: #193e7d;
}
.tel:nth-child(2n) a .telnote {
  color: #692b6d;
}
.tel a:hover {
  opacity: 0.6;
  transition: .3s;
}
/**/
.header {
  width: 100%;
  position: relative;
}
.header_inner {
  max-width: 1300px;
  width: 97%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* links */
.hnav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 95%;
  max-width: 1280px;
  padding-bottom: 10px;
  margin-top: 6px;
}
.TopPage .hnav {
  top: 93px; /*header_sticky*/
  padding-bottom: 0;
  margin-top: 0;
}
.hnav ul {
  width: 80%;
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
}
.hnav ul li {
  width: calc(100% / 5);
  border-left: 1px dashed #ddd;
}
.hnav ul li:last-child {
  border-right: 1px dashed #ddd;
}
.hnav ul li a {
  display: block;
  position: relative;
  top: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
}
.hnav ul li a span {
  display: flex;
  justify-content: center;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  color: #4c99a3;
  text-transform: capitalize;
  font-size: 170%;
}
.hnav ul li a:hover {
  opacity: 0.6;
}
/*btn*/
.hnav .mainbtn {
  width: 18%;
}
.hnav .mainbtn a {
  width: 100%;
  white-space: nowrap;
}
/* hamburger ================================= */
.header__inner {
  position: relative;
  height: fit-content;
  display: none;
}
.hamburger {
  display: block;
  height: 31px;
  position: relative;
  z-index: 9997;
  width: 55px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff !important;
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff !important;
}
.hamburger__line {
  display: block;
  height: 3px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background: #4c99a3;
  border-radius: 10px;
}
.TopPage .hamburger__line, .TopPage .hamburger__line:before, .TopPage .hamburger__line:after {
  background: #fff;
}
.change .hamburger__line, .change .hamburger__line:before, .change .hamburger__line:after {
  background: #4c99a3;
}
.hamburger__line:before {
  top: -10px;
}
.hamburger__line:after {
  top: 10px;
}
/**/
.hamburger__text {
  position: relative;
  bottom: -23px;
  left: 0;
  width: 100%;
  line-height: 1.4;
  transition: .6s all;
}
.hamburger__text::before {
  content: "menu";
  text-align: center;
  font-size: 0.9rem;
  text-transform: capitalize;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #4c99a3;
}
.TopPage .hamburger__text::before {
  color: #fff;
}
.change .hamburger__text::before {
  color: #4c99a3;
}
.hamburger.-active .hamburger__text::before {
  content: 'close';
  position: relative;
  bottom: -9px;
  margin-left: 0;
  color: #fff !important;
}
/**/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh; /* fallback */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, rgba(158, 207, 203, 0.85), rgba(76, 153, 163, 0.85)), url(../img/hamburger.webp) no-repeat 50% 50%/cover;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
/* menu */
.global-navigation {
  margin: auto;
  height: fit-content;
  padding: 70px 0 110px;
  position: relative;
  z-index: 1;
}
.global-navigation__list {
  margin-bottom: 30px;
  text-align: center;
}
.global-navigation__list > li {
  font-size: 1.1rem;
  line-height: 1.45;
  display: block;
}
.global-navigation__list li a {
  padding: 10px 0;
  display: inline-block;
  color: #fff;
  font-size: 1rem;
}
.global-navigation__list li a span {
  display: block;
  font-size: 190%;
  transition: all .3s;
  text-transform: capitalize;
  white-space: nowrap;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
/* btn */
.header__nav-area .mainbtn {
  margin-top: 13px;
}
.header__nav-area .mainbtn:nth-child(2n) a {
  border: 2px solid #4c99a3;
  color: #4c99a3;
  background: #fff;
}
.header__nav-area .mainbtn:nth-child(2n) a:hover {
  color: #fff;
  background: #4c99a3;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.header__nav-area .mainbtn a span {
  display: block;
  font-size: 80%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.header__nav-area .mainbtn:not(:nth-child(3)) a {
  font-family: "Oleo Script", serif;
  font-weight: 700;
  font-size: 110%;
}
.header__nav-area .mainbtn a::after {
  content: none;
}
/**/
.header__nav-area .mainbtn:nth-child(1) a {
  background: #193e7d;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.header__nav-area .mainbtn:nth-child(1) a:hover {
  border: 2px solid #193e7d;
  color: #193e7d;
  background: #fff;
}
.header__nav-area .mainbtn:nth-child(2) a {
  background: #692b6d;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.header__nav-area .mainbtn:nth-child(2) a:hover {
  border: 2px solid #692b6d;
  color: #692b6d;
  background: #fff;
}
/* animation */
.header__nav-area {
  overflow-x: hidden;
}
.header__nav-area ul li {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area .mainbtn {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area.-active ul li {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active .mainbtn {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active ul li:nth-child(2) {
  transition-delay: 0.15s;
}
.header__nav-area.-active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.header__nav-area.-active ul li:nth-child(4) {
  transition-delay: 0.45s;
}
.header__nav-area.-active ul li:nth-child(5) {
  transition-delay: 0.6s;
}
.header__nav-area.-active ul li:nth-child(6) {
  transition-delay: 0.75s;
}
.header__nav-area.-active .mainbtn {
  transition-delay: 0.45s;
}
@media (max-width:1045px) {
  .header_title {
    width: 220px;
  }
  .header_sticky {
    padding: 20px 13px !important;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header {
    width: fit-content;
  }
  .header_inner {
    width: 100%;
    max-width: 100%;
  }
  .header_nav, .header_item, .hnav {
    display: none;
  }
  .header__inner {
    display: block;
    margin-top: -2.5%;
  }
}
@media (max-width: 550px) {
  .header_title {
    width: 190px;
  }
  .header_sticky {
    padding: 12px 10px 14.5px !important;
  }
  .header__inner {
    margin-top: -17px;
  }
  .global-navigation__list li a {
    font-size: 0.95rem;
    padding: 7px 0;
  }
  .header__nav-area.-active .mainbtn {
    font-size: 0.9rem;
  }
}
/* footer ================================================*/
/*お問い合わせリンク*/
.footer_contact .inner {
  width: 95%;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.footer_contact {
  padding: 80px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footerbg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/footer.webp);
  background-size: cover;
  background-position: 52% 100%;
  background-attachment: fixed;
  z-index: -1;
}
/*Safari*/ ::-webkit-full-page-media, :future, :root .footerbg::after {
  background-attachment: scroll;
}
.footer_contact.bg_blue::before, .footer_contact.bg_blue::after {
  z-index: 1;
}
.footer_contact.bg_blue::before {
  opacity: 0.2;
}
.footer_contact.bg_blue::after {
  opacity: 0.77;
}
/*text*/
.footer_contact .rotation {
  filter: brightness(0) invert(1);
}
.footer_contact .maintitle {
  margin-bottom: 25px;
}
.footer_contact .maintitle span {
  color: #fff !important;
}
.ctext {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
/*btn*/
.fax {
  pointer-events: none;
}
.footer_contact .btn {
  text-align: center;
  width: 32.5%;
}
.footer_contact .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 22px 5px;
  font-size: 1.2rem;
  white-space: nowrap;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  font-weight: 700;
}
.footer_contact .btn a i {
  margin-right: 8px;
}
.footer_contact .btn a:hover {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact .btn a span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  display: block;
  font-size: 65%;
  width: 100%;
}
.footer_contact .btn:not(:nth-child(3)) a {
  font-family: "Oleo Script", serif;
  font-weight: 700;
  font-size: 135%;
}
@media (max-width: 970px) {
  .footer_contact .btn a {
    font-size: 1.9vw;
  }
  .footer_contact .btn:not(:nth-child(3)) a {
    font-size: 2vw;
  }
}
@media (max-width: 750px) {
  .footer_contact {
    padding: 47px 0 60px;
  }
  .footerbg::after {
    background-attachment: scroll;
  }
  .footer_contact .inner {
    width: 85%;
  }
  .ctext {
    text-align: left;
    margin-bottom: 25px;
  }
  .footer_contact .flexbox {
    max-width: 330px;
    margin: auto;
  }
  .footer_contact .btn {
    margin-bottom: 12px;
    width: 100%;
    height: auto;
  }
  .footer_contact .btn a {
    font-size: 1.05rem;
  }
  .footer_contact .btn:not(:nth-child(3)) a {
    font-size: 1.1rem;
  }
  .footer_contact .btn:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .footer_contact .btn a {
    font-size: 0.97rem;
    padding: 21px 0;
  }
  .footer_contact .btn a:nth-child(2) {
    padding: 13px 0;
  }
}
/* ロゴとアドレス */
.footer_address .flexbox {
  max-width: 850px;
  margin: auto;
}
.footer_address {
  position: relative;
  text-align: center;
  padding: 43px 0;
}
.flogo {
  width: 70%;
  max-width: 260px;
  margin: 0 auto 15px;
  display: block;
}
.footer_address p {
  margin-bottom: 3px;
  line-height: 1.75;
}
.footer_address p br {
  display: none;
}
.footer_address p:last-child {
  margin-bottom: 0 !important;
}
.ib {
  display: inline-block;
}
@media (max-width: 550px) {
  .footer_address p {
    font-size: 0.9rem;
    text-align: center;
  }
  .footer_address p br {
    display: block;
  }
  .flogo {
    max-width: 190px;
    margin-bottom: 10px;
  }
  .footer_address {
    padding: 35px 0;
  }
}
/* コピーライト */
.copyright {
  text-align: center;
  padding: 15px 0px 17px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (max-width: 550px) {
  .copyright {
    padding: 8px 0px 11px;
    font-size: 0.8rem;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 67px;
  height: 67px;
  position: fixed;
  bottom: 30px;
  right: 35px;
  z-index: 9;
}
.go_top i {
  font-size: 1.8rem;
  color: #fff;
  position: absolute;
  top: 47%;
  left: 16%;
  transform: translateY(-50%);
}
.go_top::before, .go_top::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: rotate(-45deg);
  border-radius: 5px;
}
.go_top::after {
  background: #692b6d;
  left: 0;
  z-index: -2;
}
.go_top::before {
  background: #193e7d;
  right: 12px;
  z-index: -1;
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 9;
}
@media(max-width:550px) {
  .go_top {
    width: 48px;
    height: 48px;
    right: 21px;
    bottom: 23px;
  }
  .go_top i {
    font-size: 1.35rem;
    left: 9.2%;
  }
}
/* スライド　========================================*/
.s_illust {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) scaleX(-1);
  z-index: 3;
  width: 100%;
  height: 100%;
}
.s_illust::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../img/_illust/s_truck.svg");
  background-repeat: no-repeat;
  background-size: 200px;
  z-index: 3;
  animation: loop 10s linear infinite;
}
@keyframes loop {
  0% {
    background-position: right -35% bottom -1%;
  }
  25% {
    background-position: right 10% bottom 3%;
  }
  50% {
    background-position: center bottom 5%;
  }
  75% {
    background-position: left 10% bottom 3%;
  }
  100% {
    background-position: left -35% bottom;
  }
}
@media(max-width:1460px) {
  .s_illust {
    bottom: 30px;
  }
}
@media(max-width:1045px) {
  .s_illust {
    bottom: 0;
  }
  .s_illust::after {
    background-size: 25%;
  }
}
@media (max-width: 550px) {
  .s_illust::after {
    animation: loop 7s linear infinite;
  }
}
/**/
.topslide {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.topslide::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/slide.svg) no-repeat;
  background-size: 100%;
  background-position: bottom -1px center;
  pointer-events: none;
}
/*
.topslide::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  z-index: 1;
  opacity: 0.3;
}
*/
.slide_items img {
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 130px);
  min-height: 650px;
}
/*
.masked {
  mask-image: url(../img/mask.webp);
  -webkit-mask-image: url(../img/mask.webp);
  mask-size: 100% 100vh;
  -webkit-mask-size: 100% 100vh;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
*/
/**/
.catchcopy {
  width: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.slidelogo {
  margin: 0 auto 10px;
  max-width: 470px;
  width: 70%;
  height: auto;
}
@media (max-width: 1045px) {
  .slide_items img {
    height: calc(100vh - 50px);
  }
}
@media (max-width: 550px) {
  .slide_items img {
    min-height: auto;
    height: 470px;
  }
}
/* ごあいさつ　========================================*/
.welcome .tl {
  top: -110px;
}
.welcome .illust {
  width: 32% !important;
}
@media (max-width: 550px) {
  .welcome .tl {
    top: -50px;
  }
}
/**/
.welcome .inner {
  max-width: 1429px;
}
.wflex {
  display: flex;
  justify-content: space-between;
}
/*img*/
.wimg {
  position: relative;
  width: 50%;
  display: flex;
  margin-right: -3%;
}
.wimg img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
/*text*/
.wtext {
  width: 53%;
  border-radius: 10px;
  padding: 40px 35px 30px;
  background: #fff;
  height: fit-content;
  margin: 3.5% 0 3% -3%;
  position: relative;
  z-index: 1;
}
@media (max-width: 850px) {
  .wflex {
    display: block;
  }
  .wimg {
    width: 100%;
    margin-right: auto;
  }
  .wtext {
    width: 94%;
    margin: -10% auto 0;
  }
  .wflex .spcenter {
    text-align: center;
    margin-left: auto;
  }
}
@media (max-width: 550px) {
  .wtext {
    padding: 27px 13px 23px;
  }
}
/* 事業内容　========================================*/
@media (max-width:750px) {
  .SP_displayContents .inner {
    display: flex;
    flex-direction: column;
  }
  .SP_displayContents .flexbox, .SP_dc {
    display: contents;
  }
  .SP_displayContents h2 {
    order: -1;
  }
  .SP_displayContents .maintitle {
    order: -1;
    margin-bottom: 40px !important;
  }
}
/* 荷主様へ　========================================*/
/*box*/
.guidebox {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 60px 35px 40px;
}
.guidebox .fitc {
  text-align: center;
}
@media (max-width: 1040px) {
  .guidebox .fitc {
    text-align: left;
  }
}
@media (max-width: 550px) {
  .guidebox {
    padding: 45px 15px 30px;
  }
}
/*illust*/
.plane {
  position: absolute;
  top: -15px;
  right: -10px;
  width: 48%;
  max-width: 250px;
  display: flex;
  justify-content: space-between;
}
.plane img:not(.pln) {
  width: 20%;
  animation: cloud 4.5s linear infinite;
}
@keyframes cloud {
  0% {
    transform: translateY(10%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10%);
  }
}
.pln {
  width: 57%;
  animation: plane 4.5s linear infinite;
}
@keyframes plane {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}
@media (max-width: 550px) {
  .plane img:not(.pln) {
    animation: cloud 3.7s linear infinite;
  }
  .pln {
    animation: plane 3.7s linear infinite;
  }
}
/*img*/
.welcomeimg {
  position: relative;
  flex-wrap: nowrap;
  margin: 80px auto 50px;
  max-width: 900px;
}
.welcomeimg .psr {
  width: 55%;
  position: relative;
}
.welcomeimg .psr:first-child {
  z-index: 1;
  margin-top: -30px;
  margin-right: -25px;
  transform: rotate(-4deg)
}
.welcomeimg .psr:last-child {
  margin-bottom: -30px;
  margin-left: -25px;
  transform: rotate(4deg)
}
@media (max-width: 750px) {
  .welcomeimg {
    margin: 45px auto 0;
  }
  .welcomeimg .psr:first-child, .welcomeimg .psr:last-child {
    margin: 0;
    width: 75%;
  }
  .welcomeimg .psr:last-child {
    margin-left: auto;
    margin-top: -15px;
  }
}
/* CONTENTS　========================================*/
.contents .inner {
  max-width: 1100px;
}
.conflex {
  display: flex;
}
/*illust*/
.contitle {
  position: relative;
  margin-right: 7%;
  min-height: 330px;
}
.logistics {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 950px) {
  .conflex {
    display: block;
  }
  .contitle {
    min-height: auto;
    position: initial;
    margin-right: 0;
  }
  .logistics {
    bottom: auto;
    left: auto;
    top: -75px;
    right: -10px;
    width: 28%;
  }
}
@media (max-width: 550px) {
  .logistics {
    top: -55px;
    width: 40%;
  }
}
/* link */
.link a {
  position: relative;
  display: block;
}
.link a::after {
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/_bg/bg.svg) repeat;
  background-size: 170px;
  background-position: center;
  filter: invert(67%) sepia(5%) saturate(2077%) hue-rotate(132deg) brightness(95%) contrast(90%);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: -10px;
  border-radius: 50%;
}
.link a img {
  transition: .6s all;
}
.link a .rounded {
  border-radius: 50%;
  overflow: hidden;
}
.link a:hover img {
  transform: scale(1.1);
}
/*title*/
.link a h2 {
  font-size: clamp(1rem, 0.5rem + 1.6vw, 1.4rem);
  line-height: 1;
  position: absolute;
  bottom: 20px;
  left: 0;
  color: #333;
  font-weight: 700;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.link a h2 span {
  display: block;
  color: #4c99a3;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 300%;
}
/*illust*/
.l_illust {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 45% !important;
}
@media (max-width: 750px) {
  .link {
    width: 83% !important;
    margin-bottom: 25px;
  }
  .link:last-of-type {
    margin-left: auto;
    margin-bottom: 0 !important;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 120px 0 130px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background: url(../img/fv.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 60%;
  clip-path: ellipse(130% 100% at top);
}
.fv .inner {
  width: 97%;
  z-index: 3;
}
.fv::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/fv.svg) no-repeat;
  background-size: 150%;
  background-position: bottom -80px center;
  pointer-events: none;
  z-index: 1;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #4c99a3;
  opacity: 0.75;
  z-index: 1;
}
.fv h2 {
  line-height: 0.45;
  margin-bottom: 0 !important;
  z-index: 1;
  position: relative;
  animation: FVfadeIn 2s ease 0.3s 1 normal backwards;
}
.fv h2 span {
  color: #fff !important;
}
@keyframes FVfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 2150px) {
  .fv {
    clip-path: ellipse(100% 100% at top);
  }
  .fv::after {
    background-position: bottom -2.2vw center;
  }
}
@media(max-width:1045px) {
  .fv {
    padding: 90px 0 110px;
  }
  .fv::after {
    background-position: bottom -1.4vw center;
  }
}
@media(max-width:750px) {
  .fv {
    clip-path: ellipse(130% 100% at top);
  }
  .fv::after {
    background-size: 170%;
    background-position: bottom -0.75vw center;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 50px 0 60px;
  }
}
/* breadcrumb */
.binner {
  width: 95%;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
}
.breadcrumb {
  z-index: 1;
  background: transparent;
  position: absolute;
  top: 5px;
  left: 0;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #4c99a3;
}
.bg_blue .breadcrumb, .bg_blue .breadcrumb li a {
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
@media(max-width:550px) {
  .breadcrumb {
    font-size: 0.7rem;
  }
}
/* 事業内容ページ =========================================================================================================*/
/* 貨物利用運送事業 */
.transportation .inner {
  max-width: 987px;
}
.serflow {
  margin-bottom: 65px;
}
.serflow img {
  max-width: 950px;
  width: 100%;
  display: block;
  margin: auto;
}
/**/
.services_item {
  margin-bottom: 50px;
}
.services_item:last-of-type {
  margin-bottom: 0 !important;
}
.ser_mgt {
  margin-top: 27px;
}
@media(max-width:550px) {
  .services_item {
    margin-bottom: 40px;
  }
  .serflow {
    margin-bottom: 50px;
  }
}
/*第一種貨物利用運送事業*/
.ser_flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.photo {
  width: 23.5%;
}
.photo p {
  font-size: clamp(1rem, 0.9375rem + 0.2vw, 1.05rem);
}
.photo p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  color: #4c99a3;
  margin-right: 5px;
}
@media(max-width:900px) {
  .photo {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media(max-width:550px) {
  .photo {
    margin-bottom: 10px;
  }
}
/* 貨物軽運送事業 */
.whitebox {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 35px 35px 40px;
}
.whitebox .flexbox .ser_mgt .stitle {
  font-size: clamp(1.1rem, 0.9125rem + 0.6vw, 1.25rem);
}
.acflex {
  display: flex;
  flex-wrap: wrap;
}
.acflex.acheck li {
  width: 48%;
  padding-bottom: 10px;
  margin: 0 1% 10px !important;
}
@media(max-width:750px) {
  .whitebox {
    padding: 25px 15px 20px;
  }
  .acflex {
    display: block;
  }
  .acflex.acheck li {
    width: 100%;
    margin: 0 0 10px !important;
  }
}
/* 物流コンサルティング */
.consultation .inner {
  max-width: 1180px;
}
/* 対応エリア */
.area.inner {
  max-width: 860px;
}
.areatext {
  margin-bottom: 57%;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(1.35rem, 0.1625rem + 3.8vw, 2.3rem);
}
.areaimg img {
  filter: brightness(0) invert(1);
}
@media(max-width:750px) {
  .areaimg {
    width: 80% !important;
    margin: auto;
  }
  .areatext {
    margin-bottom: 0;
  }
}
/* 荷主様へ */
.banner {
  display: block;
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
  transition: .6s all;
  color: #333;
}
.banner:hover {
  transform: scale(1.02);
}
.bannerbox {
  background: #fff;
  border-radius: 10px;
  border: 3px solid #9ecfcb;
  overflow: hidden;
}
/*text*/
.banner p:not(.ostext) {
  font-size: 110%;
  font-weight: 700;
  margin-bottom: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.bannerbox h2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 900;
  color: #4c99a3;
  font-size: clamp(1.5rem, 0.5rem + 3.2vw, 2.3rem);
  margin-bottom: 15px;
}
.bannerbox h2::before, .bannerbox h2::after {
  content: '';
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(../img/deco.svg);
  background-size: contain;
  vertical-align: middle;
  position: relative;
}
.bannerbox h2::before {
  left: -4%;
}
.bannerbox h2::after {
  transform: scaleX(-1);
  right: -3%;
}
.sbtext {
  margin: auto;
  padding: 60px 20px;
}
/*img*/
.sbimgs {
  display: flex;
  justify-content: space-between;
  clip-path: ellipse(100% 100% at left);
}
.sbimgs img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/**/
.ostext {
  pointer-events: none;
  position: absolute;
  top: -35px;
  left: -2%;
  font-size: clamp(2rem, 0.375rem + 5.2vw, 3.3rem);
  font-family: "Oleo Script", serif;
  font-weight: 700;
  color: #692b6d;
  transform: rotate(-10deg);
  text-transform: capitalize;
  white-space: nowrap;
  letter-spacing: 0.025em;
  z-index: 1;
}
@media (max-width:750px) {
  .sbtext h2, .sbtext p {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .banner p:not(.ostext) {
    font-size: 100%;
  }
  .sbimgs {
    clip-path: ellipse(100% 100% at top);
  }
  .sbtext {
    padding: 20px 17px 30px;
  }
}
@media (max-width:550px) {
  .banner {
    margin-top: 60px;
  }
  .sbtext {
    margin: auto;
  }
  .bannerbox h2::before, .bannerbox h2::after {
    width: 25px;
    height: 25px;
  }
  .ostext {
    top: -7%;
  }
}
/* 荷主様へページ =========================================================================================================*/
/* 配送でこんなお悩み感じたことありませんか？ */
.guide .inner {
  max-width: 1338px;
}
.guide .flexbox {
  align-items: flex-start;
}
/*box*/
.worries, .solution {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}
/*配送でこんなお悩み感じたことありませんか？*/
.worries {
  width: 40%;
  border: 3px solid #ddd;
}
.worries h2 {
  font-weight: 700;
  font-size: clamp(1.05rem, 0.925rem + 0.4vw, 1.15rem);
  margin-bottom: 13px;
  background: #999999;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}
/*list*/
.worries ul li {
  border-bottom: 1px dashed #d6d6d6;
}
.worries ul li::before {
  color: #999999;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
/* 当社なら */
.solution {
  width: 57%;
  border: 3px solid #9ecfcb;
}
.solution h2 {
  position: relative;
  margin-top: -95px;
  margin-left: -72px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.3rem, 0.925rem + 1.2vw, 1.6rem);
  line-height: 1.65;
  width: fit-content;
  padding: 6.5% 7% 4% 8%;
  color: #4c99a3;
}
.solution h2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .guide .flexbox {
    display: block;
  }
  .guide .flexbox div {
    width: 100%;
  }
  .worries {
    margin-bottom: 55px;
  }
  .solution h2 {
    padding: 45px 40px 30px 45px;
    margin-top: -8%;
    margin-left: -8%;
    margin-bottom: 10px;
  }
}
@media (max-width: 780px) {
  .solution h2 {
    margin-top: -67px;
    margin-left: -45px;
  }
}
@media (max-width: 550px) {
  .worries, .solution {
    padding: 20px 15px;
  }
  .solution h2 {
    margin-left: -35px;
  }
  .worries ul li {
    padding-left: 0;
  }
  .solution ul li {
    display: block;
  }
}
/* illust */
.cars_center {
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  align-items: flex-end;
  max-width: 890px !important;
  width: 100% !important;
}
.cars_center div {
  width: calc(100% / 5 - 5%);
  margin: 0 3% 0;
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s, transform 0.9s;
}
.cars_center div img {
  width: 100% !important;
}
.cars_center div:nth-child(1) {
  transition-delay: 0.25s;
}
.cars_center div:nth-child(2) {
  transition-delay: 0.45s;
}
.cars_center div:nth-child(3) {
  transition-delay: 0.8s;
}
.cars_center div:nth-child(4) {
  transition-delay: 1.15s;
}
.cars_center div:nth-child(5) {
  transition-delay: 1.45s;
}
.cars_center.inview div {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 800px) {
  .cars_center {
    top: -2%;
  }
}
@media (max-width: 750px) {
  .cars_center {
    top: -5vw;
  }
}
@media (max-width: 550px) {
  .cars_center {
    top: -18px;
  }
}
/* ご依頼の流れ */
.flow {
  counter-reset: number 0;
  position: relative;
}
.flow::before {
  content: "";
  width: 16px;
  height: 100%;
  background: #ddd;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.flow .stitle {
  margin-bottom: 13px;
  ont-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
  padding-left: 93px;
  padding-top: 0;
  position: relative;
  line-height: 1.7;
  padding-bottom: 7px;
}
.flow .stitle::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  text-transform: capitalize;
  counter-increment: number 1;
  content: "step0"counter(number);
  color: #4c99a3;
  font-family: "Oleo Script", serif;
  font-weight: 700;
}
.flow .fwrap {
  padding: 35px;
  background: #fff;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  border: 3px solid #f0f0f0;
}
.flow .flowd:last-child {
  margin-bottom: 0 !important;
}
.flow .flowd::after, .flow .flowd::before {
  content: "";
  display: block;
  position: absolute;
  top: 57px;
}
.flow .flowd {
  padding-left: 80px;
  position: relative;
  margin-bottom: 25px;
}
.flow .flowd::before {
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: -5px;
  background: #4c99a3;
  border-radius: 50%;
  left: 3px;
}
.flow .flowd::after {
  width: 63px;
  border-bottom: 3px dotted #4c99a3;
  position: absolute;
  left: 13px;
}
/*btn*/
.btnflex {
  text-align: center;
}
.btnflex a {
  margin: 4px;
  display: inline-block;
}
/**/
.flow .fwrap .btnflex a:first-of-type {
  font-family: "Oleo Script", serif;
  font-weight: 700;
}
.flow .fwrap .mainbtn a::before, .flow .fwrap .mainbtn a::after {
  content: none;
}
.flow .btnflex {
  margin-top: 20px;
}
@media (max-width: 950px) {
  .flow .flowd {
    padding-left: 0;
  }
  .flow .flowd::before, .flow .flowd::after {
    content: none;
  }
  .flow::before {
    content: none;
  }
  .flow .fwrap .mainbtn a::after {
    content: none;
  }
  .flow .flowd {
    margin-bottom: 25px;
  }
  .flow .fwrap {
    padding: 30px 25px;
  }
}
@media (max-width: 1100px) {
  .flow .flexbox {
    align-items: center;
  }
}
@media(max-width: 750px) {
  .flow .flowd {
    margin-bottom: 15px;
  }
  .flow .fwrap .mainbtn a {
    font-size: 90%;
  }
  .flow .flexbox {
    display: block;
  }
  .flow .flexbox img {
    width: 100%;
  }
  .flow .flexbox div {
    width: 100%;
  }
  .flow .flowd .flexbox img {
    margin-bottom: 10px;
  }
  .flow .flex div {
    margin: 0 5px 8px;
  }
  .flowd .flimg img {
    object-fit: cover;
    width: 100%;
    height: 240px;
  }
}
@media(max-width: 600px) {
  .flow .flex {
    display: block;
  }
  .flow .flex img {
    width: 100%;
  }
  .flow .flex div {
    width: 100%;
    margin: 0 0 8px;
  }
  .flowd .flimg img {
    height: 100%;
  }
}
@media(max-width: 550px) {
  .flow .stitle {
    padding-left: 77px;
  }
  .flow .fwrap {
    padding: 15px;
  }
}
/* 会社概要ページ =========================================================================================================*/
/* 理念 */
.vision .plane {
  top: -5px;
  right: 1.3%;
  z-index: 3;
}
.dishes_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*text*/
.vtext {
  width: 62%;
  margin-left: auto;
  margin-right: auto;
}
.vtext p {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  white-space: nowrap;
  line-height: 1.6;
}
/*img*/
.dishes_left div img, .dishes_right div img {
  border-radius: 50%;
}
.dishes_left, .dishes_right {
  width: 25%;
  height: 300px;
  position: relative;
}
.dishes_left div, .dishes_right div {
  position: absolute;
}
.di_img {
  position: relative;
}
.di_img::before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/_bg/bg.svg) repeat;
  background-size: 115px;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  position: absolute;
  top: 6px;
  right: -6px;
  border-radius: 50%;
}
/*right*/
.dishes_right .di_img:nth-child(1) {
  top: -14%;
  left: 8%;
  width: 70%;
}
.dishes_right .di_img:nth-child(2) {
  bottom: 0;
  right: -37%;
  width: 63%;
}
/*left*/
.dishes_left {
  order: -1;
}
.dishes_left .di_img:nth-child(1) {
  top: -14%;
  right: 8%;
  width: 70%;
}
.dishes_left .di_img:nth-child(2) {
  bottom: 0;
  left: -37%;
  width: 63%;
}
.dishes_img_spflex {
  display: contents;
}
@media (max-width: 1370px) {
  .dishes_left, .dishes_right {
    height: 20vw;
    position: absolute;
    top: 29%;
  }
  .dishes_left {
    left: 0;
  }
  .dishes_right {
    right: 0;
  }
  .dishes_right .di_img:nth-child(1), .dishes_left .di_img:nth-child(1) {
    top: -48%;
    width: 15vw;
  }
  .dishes_right .di_img:nth-child(2), .dishes_left .di_img:nth-child(2) {
    width: 15vw;
  }
}
@media(max-width:1200px) {
  .vtext p {
    font-size: 2.6vw;
  }
}
@media (max-width: 1020px) {
  .vision .wave {
    margin-top: 0;
  }
  .vtext {
    width: 100%;
  }
  .vtext p {
    font-size: 1.7rem;
  }
  .dishes_flex {
    display: block;
  }
  .dishes_img_spflex {
    display: flex;
    position: relative;
  }
  .dishes_img_spflex {
    margin-top: 40px;
    width: 115%;
    height: 55vw;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .dishes_left, .dishes_right {
    width: 50%;
    position: initial;
  }
  .dishes_right .di_img:nth-child(1) {
    top: 0;
    bottom: auto;
    left: -3%;
    right: auto;
    width: 33%;
  }
  .dishes_right .di_img:nth-child(2) {
    bottom: 1%;
    top: auto;
    left: 28%;
    right: auto;
    width: 28%;
  }
  .dishes_left .di_img:nth-child(1) {
    top: 6%;
    bottom: auto;
    right: 28%;
    left: auto;
    width: 24%;
  }
  .dishes_left .di_img:nth-child(2) {
    bottom: 0;
    top: auto;
    right: -3%;
    left: auto;
    width: 34%;
  }
}
@media(max-width:750px) {
  .vtext p {
    text-align: left;
    white-space: normal;
    font-size: 130%;
  }
  .vtext p br {
    display: none;
  }
  .di_img::before {
    background-size: 75px;
    top: 4px;
    right: -4px;
  }
}
/* 代表あいさつ */
.greeting .inner {
  max-width: 1320px;
}
.glast {
  text-align: right;
  margin-top: 25px;
  line-height: 1.6;
}
.glast span {
  display: block;
  font-family: "Yuji Mai", serif;
  font-weight: 400;
  font-size: 150%;
}
@media (max-width: 750px) {
  .greeting {
    background-attachment: scroll;
  }
  .greeting::after {
    opacity: 0.6;
  }
  .glast span {
    font-size: 130%;
  }
}
/* 会社概要 */
.infobox {
  padding: 50px 40px;
  background: #fff;
  border-radius: 10px;
}
@media(max-width: 550px) {
  .infobox {
    padding: 30px 15px;
  }
}
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 1px dashed #4c99a3;
}
.info_table th {
  background: transparent;
  width: 35%;
}
.info_table th, .info_table td {
  font-weight: 500;
  padding: 23px 0;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 65%;
  background: transparent;
}
/**/
.group {
  display: inline-block;
  width: 100%;
  max-width: 100px;
}
.group:hover {
  opacity: 0.6;
}
/**/
.info_table .acheck li {
  border-bottom: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media(max-width: 750px) {
  .info_table tr {
    border-bottom: none !important;
  }
  .info_table td {
    border-bottom: 1px dashed #4c99a3;
    margin-bottom: 0;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 8px 0 18px;
    display: block;
  }
  .info_table th {
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
  }
  .info_table tr:first-child th {
    padding-top: 0;
  }
}
@media(max-width:550px) {
  .group {
    max-width: 70px;
  }
}
/* map */
.map iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
@media (max-width: 550px) {
  .map iframe {
    height: 280px;
  }
}
/* お問い合わせページ =========================================================================================================*/
#email {
  position: relative;
  top: -85px;
}
/**/
.contactPage section .inner {
  max-width: 1050px;
}
.contop {
  margin-bottom: 55px;
}
.conbox {
  width: 49%;
  padding: 15px 20px 20px;
  margin-bottom: 15px;
  border: 3px solid #f0f0f0;
  border-radius: 10px;
  position: relative;
}
.conbox .stitle {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.conbox a {
  white-space: nowrap;
  display: block;
  font-size: clamp(1.6rem, 0.975rem + 2vw, 2.1rem);
  color: #333;
  font-family: "Oleo Script", serif;
  font-weight: 700;
  line-height: 1.8;
}
.conbox a:hover {
  opacity: 0.6;
}
.conbox:nth-child(1) a i {
  color: #193e7d;
}
.conbox:nth-child(2) a i {
  color: #692b6d;
}
.conbox:nth-child(3) a i {
  color: #4c99a3;
}
/**/
.conbox p:first-of-type {
  margin-top: 5px;
}
.conbox p {
  margin-bottom: 0;
}
.conbox p, .conbox .acheck {
  font-size: 95%;
}
@media(max-width:950px) {
  .conbox .stitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 750px) {
  .conbox p, .conbox .acheck {
    font-size: 90%;
  }
  .spnone {
    display: none;
  }
  .conbox:last-child {
    margin-bottom: 0 !important;
  }
  .acheck.flexbox li {
    margin-right: 0 !important;
  }
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 30px;
  }
  .conbox {
    padding: 15px 15px 20px;
    margin-bottom: 15px;
  }
  .conbox .stitle {
    font-size: 1rem;
  }
  .conbox .acheck {
    margin-top: 5px;
  }
}
/* Fax */
.faxbox.conbox {
  width: 100%;
}
.faxbox a {
  pointer-events: none;
}
/* check list absolute */
.acheck li {
  padding-left: 20px;
  position: relative;
  border-bottom: 1px dashed #4c99a3;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.acheck li:last-of-type {
  margin-bottom: 0;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #4c99a3;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
/* check list */
.conbox .acheck li::before {
  color: #4c99a3;
}
.acheck.flexbox {
  justify-content: flex-start;
}
.acheck.flexbox li {
  margin-right: 25px;
}
.acheck.flexbox li:last-child {
  margin-right: 0;
}
.acheck.flexbox li {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
/* メール */
.mails .mtitle {
  margin-bottom: 7px;
}
.mails {
  padding-bottom: 50px;
}
@media(max-width:550px) {
  .mails {
    padding-bottom: 20px;
  }
}
.mnote {
  max-width: 915px;
  margin: auto;
  margin-top: 50px;
}
.mpdb {
  padding-bottom: 55px !important;
  margin-bottom: 0 !important;
}
@media(max-width:550px) {
  .mnote {
    font-size: 90%;
    margin-top: 45px;
  }
  .mpdb {
    padding-bottom: 25px !important;
  }
}
.formsel p:last-child {
  margin-bottom: 0;
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #4c99a3;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
  font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #4c99a3;
  padding: 5px;
  margin-right: 5px;
  font-size: 12px;
}
.mailsp {
  background: #fff !important;
  border: 1px solid #4c99a3;
  color: #4c99a3 !important;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform label {
  color: #333;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
  color: #333;
}
.mailform .special {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
.mailform button {
  position: relative;
  margin: 0 auto;
  padding: 25px 0;
  display: block;
  width: 280px;
  text-align: center;
  color: #fff;
  background: #692b6d;
  border: 2px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
  overflow: hidden;
  border-radius: 50px;
  font-weight: 700;
  transition: .4s;
  margin-bottom: 10px;
}
.mailform button:hover {
  color: #692b6d;
  background: #fff;
  border: 2px solid #692b6d;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
/**/
.contactPage .mainbtn a {
  color: #fff;
  background: #193e7d;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.contactPage .mainbtn a:hover {
  color: #193e7d;
  background: #fff;
  border: 2px solid #193e7d;
}
.contactPage .mainbtn a::before, .contactPage .mainbtn a::after {
  content: none;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #4c99a3;
  border-bottom: 3px solid #4c99a3;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 25%;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 800px) {
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .mailform button {
    width: 230px;
    padding: 20px 0;
  }
  .mailform .special {
    font-size: 0.9rem
  }
}
/*個人情報の取り扱いについて*/
.privacy {
  padding-top: 0 !important;
}
.privacy_item {
  position: relative;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  padding: 0 10px;
}
.privacy_wrap {
  border-bottom: 1px dashed #4c99a3;
}
.privacy_header {
  font-size: clamp(0.97rem, 0.5575rem + 1.32vw, 1.3rem);
  padding-bottom: 10px;
  font-weight: 500;
  transition: ease-in-out 100ms;
}
.privacy_header i {
  color: #4c99a3 !important;
}
.privacy_text {
  width: 100%;
  display: none;
  padding: 20px 35px 30px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.privacy_text .right {
  text-align: right;
}
.privacy_text span {
  position: relative;
  font-weight: 700;
  color: #4c99a3;
}
.privacy_text span::before {
  content: "■";
  display: inline-block;
  font-size: 0.7rem;
  margin-right: 0.35em;
  transform: translateY(-3px);
  color: #4c99a3;
}
@media(max-width:750px) {
  .privacy_text {
    padding: 20px 15px 30px;
  }
}
.privacy_text p {
  margin-bottom: 17px;
}
.privacy_text p.border {
  border: 1px solid #ddd;
  padding: 20px;
}
.arrow {
  transition: ease-in-out 300ms;
}
.rotate-fa {
  transform: rotate(180deg);
}
.privacy_header span {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.privacy_gold {
  color: #4c99a3;
}
.bold {
  font-weight: 700;
}
/*テキストリンク*/
a.t_link {
  color: #4c99a3;
  background-image: linear-gradient(to right, #4c99a3, #4c99a3);
  background-position: 0 100%;
  background-position: bottom left;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  transition: 0.4s;
}
a.t_link:hover {
  opacity: 0.6;
  background-size: 0% 1px;
}
ul.numb_list li {
  position: relative;
  padding-left: 40px;
}
ul.numb_list li .numb {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
}