@font-face {
  font-family: NotoSansJP;
  src: url("../wf/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
  font-family: PatrickHandR;
  src: url("../wf/PatrickHand-Regular.ttf") format("truetype");
}

.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid rgb(0, 162, 255);
  margin: 1rem;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
  font-family: "NotoSansJP" !important;
  font-size: 16px;
  color: #333;
  background: #fafafa;
  height: 100vh;
}

input:focus::placeholder {
  color: transparent;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
  font-weight: normal;
}

ul {
  list-style-type: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-size: 16px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* ボタンのスタイル */
.button {
  position: relative;
  border: none;
  background: none;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 5px;
  cursor: pointer;
}

.add,
.clear,
.csv,
.csv_download {
  background-color: green;
  color: white;
}

.add::before,
.clear::before,
.csv::before,
.csv_download::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-position: center;
  left: 0.5rem;
  top: 0.6rem;
}

.add::before {
  content: "\f055";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.clear::before {
  content: "\f2f1";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.csv::before {
  content: "\f093";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.csv_download::before {
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.6rem;
}

.contact {
  background: rgb(0, 162, 255);
  color: white;
  padding: 0.5rem 1rem;
}

.cancel {
  background: red;
  color: white;
  padding: 0.5rem 1rem;
}

.icon-delete::after {
  content: "\f057";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 900;
  color: #ff0000;
}

.delete {
  cursor: pointer;
  background-color: initial;
  border: none;
}

input,
select,
textarea {
  outline: none;
}

a {
  color: #333;
  transition: 0.5s;
}

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

.inner {
  max-width: 100vw;
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
}

#container {
  flex: 1;
}

.header-top {
  background: #ffffff;
  height: 90px;
}

.header-top .inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header-top .header-title,
.header-top .header-menu {
  display: flex;
  align-items: center;
}

.header-top .header-title {
  font-size: 3rem;
  font-weight: normal;
}

.header-top .header-menu {
  font-size: 1.5rem;
  font-weight: normal;
}

.header-top .login-button {
  font-size: 0.7rem;
  background-color: #00d1b2;
  border-radius: 4px;
  padding: 0.25rem 1rem !important;
  transition: all 0.3s;
  color: #fff;
}

.header-top .login-button:hover {
  background-color: #00c4a7;
}

#menu {
  position: relative;
  z-index: 10;
  text-align: center;
  background: #f2f2f2;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  height: 50px;
  position: sticky;
  top: 0;
}

#menu ul {
  height: 100%;
  display: flex;
  align-items: center;
}

#menu ul li {
  font-size: 1rem;
  height: 100%;
}

#menu .inner > li:nth-child(n + 2) > a {
  border-left: solid 1px #ccc;
}

#menu ul li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

#menu ul li span {
  display: block;
  font-size: 10px;
  color: #999;
  letter-spacing: 0.2em;
}

#menu ul li:hover ul {
  height: auto;
  border-style: solid;
  border-color: #ccc;
  border-width: 0 1px 1px 1px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding-bottom: 8px;
}

#menu-s {
  display: none;
}

#menu_btn {
  display: none;
}

#mobile_menu {
  display: none;
}

#contents {
  min-height: 10rem;
}

#contents .headline {
  clear: both;
  margin: 5rem 0 1rem 0;
  padding-left: 30px;
  font-size: 2em;
  text-align: left;
  border-bottom: 5px solid #ccc;
  width: 23rem;
  margin-right: auto;
}

#contents h3 {
  clear: both;
  margin-bottom: 30px;
  font-size: 150%;
  border-bottom: 1px solid #ccc;
  padding-left: 3%;
  letter-spacing: 0.1em;
}

#contents p {
  padding: 0 3% 30px;
}

#contents h2 + p,
#contents h3 + p {
  margin-top: -5px;
}

#contents p + p {
  margin-top: -10px;
}

#contents section + section {
  margin-top: 100px;
}

#contents a {
  color: #00d1b2;
}

#section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

#section article {
  margin-bottom: 4rem;
}

#section .list-column-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
}

.img-shipper,
.img-partner,
.img-service,
.img-business,
.img-member,
.img-customer {
  height: 15rem;
  width: 15rem;
  border-radius: 50%;
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
  cursor: pointer;
  background-color: rgb(230, 230, 230);
  box-shadow: 0 0 0 0 #c4c4c4;
  transition: all 0.3s;
}

.img-shipper:hover,
.img-partner:hover,
.img-service:hover,
.img-business:hover,
.img-member:hover,
.img-customer:hover {
  transform: scale(1.1, 1.1);
  box-shadow: 0px 6px 11px 0px #c4c4c4;
}

.img-shipper {
  background-image: url("../images/icons/truck.png");
}

.img-partner {
  background-size: 60%;
  background-image: url("../images/icons/load.png");
}

.img-service {
  background-size: 60%;
  background-image: url("../images/icons/map.png");
}

.img-business {
  background-size: 60%;
  background-image: url("../images/icons/handshake.png");
}

.img-member {
  background-size: 60%;
  background-image: url("../images/icons/member.png");
}

.img-customer {
  background-size: 60%;
  background-image: url("../images/icons/comment.png");
}

#section .list-column {
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  flex-direction: column;
  width: 20rem;
  color: #000;
  border-radius: 5px;
}

#section .list-column .text {
  padding: 5%;
  flex: 1 0 auto;
}

#section .list-column a {
  color: rgb(0, 0, 0);
}

#section .list-column h4 {
  font-size: 140%;
}

#section .list-item-imag {
  height: 8rem;
  width: 100%;
  background: rgb(185, 185, 185);
}

/* 問い合わせボタン（固定） */
#contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 75px;
  height: 75px;
  background-color: rgba(0, 0, 0, 0.473);
  border-radius: 50%;
  border: 1px solid white;
  bottom: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

#contact-btn:hover {
  background-color: rgba(0, 0, 0, 0.644);
  transform: scale(1.1);
}

.banner {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 4rem;
  padding: 1rem 4rem;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-style: solid;
  border-color: #00d1b2;
}

/* PRコンテンツ(共通) */
.pr-contents {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
}

.pr-contents-title {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  align-items: center;
}

.pr-contents .logo {
  max-height: 15vw;
  height: 6rem;
  margin-right: 2rem;
}

#contents .pr-contents h2 {
  border: none;
  width: auto;
  font-size: 2.8rem;
  font-weight: bold;
  color: #007199;
  padding: 0;
}

/* PRコンテンツ(概要) */
#about .img {
  width: 28rem;
  max-width: 60vw;
  margin: 1rem;
}

#about .line {
  max-width: 60vw;
}

#section #about .list-column-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
}

#section #about .list-column {
  width: 31rem;
  height: 28rem;
  margin: 2rem;
  padding: 1rem;
  align-items: center;
  background-color: #f0f0f0;
}

#contents #about h3 {
  display: flex;
  justify-content: center;
  border: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #007199;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* PRコンテンツ(サービス) */
.full-line,
.price,
.logistics,
.one-stop {
  width: 100%;
}

.service-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

#contents .service-title h3 {
  border: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: bold;
}

#contents .service-title .number {
  font-size: 2.5rem;
  padding: 3% 0 0 7.5%;
}

#contents .service-title .title-name {
  font-size: 275%;
  margin-top: 0.5%;
}

#contents .service-title .close-img {
  height: 5%;
  width: 5%;
  margin: 4% 4% 0 0;
}

#contents #service .service-text > p {
  font-weight: bold;
  font-size: 1.5rem;
}

.service-contents {
  margin: 2rem 0;
}

#contents #service .service-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#service .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

#service .full-line-img {
  margin: 3.5rem;
  height: 10rem;
}

#service .logistics-img {
  width: 80%;
}

#service .one-stop-img {
  width: 20%;
}

#service .price-img {
  width: 70%;
}

/* PRコンテンツ(ネットワーク) */
#contents #network .list-column-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#contents #network .list-column {
  display: flex;
  flex-direction: row;
}

#network .network1,
#network .network2 {
  margin: 1rem;
}

#network .network1 img,
#network .network2 img {
  border-bottom: solid 1rem #00a1e9;
  margin-bottom: 2rem;
  background-color: rgb(240, 240, 240);
}

#network .network1 img {
  width: 21rem;
}

#network .network2 img {
  max-width: 90vw;
  width: 33rem;
}

#network .network-title {
  background-color: rgb(36, 139, 205);
  color: #fff;
  width: 90%;
  height: 25%;
  margin: 0 5%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#network h4 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 2rem;
}

/* PRコンテンツ(ボタン) */
#section .pr-contents-button .list-column-container {
  display: flex;
  justify-content: flex-end;
  width: 98%;
}

#section .pr-contents-button .btn-top,
#section .pr-contents-button .btn-home {
  margin: 1rem;
}

#section .pr-contents-button img {
  width: 10rem;
  max-width: 30vw;
}

/* スライド */
#slide-outer {
  overflow: hidden;
}

#slide {
  display: block;
  position: relative;
}

.slick-list {
  position: relative;
  display: flex;
  margin: 0px;
  padding: 0px;

  left: 0;
  transition: 500ms;
}

.slick-list img {
  width: 100vw;
}

.slide-overlay {
  position: absolute;
  display: flex;
  bottom: 0;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
}

.slide-overlay button {
  color: white;
  font-size: 300%;
  pointer-events: all;
  cursor: pointer;
}

.slide-overlay button.slick-prev {
  padding-left: 1.5rem;
}

.slide-overlay button.slick-next {
  padding-right: 1.5rem;
}

.main-slide {
  position: relative;
  width: 100%;
  display: inline-block;
}

.main-slide > p > span > img {
  width: 100%;
  max-width: none;
  display: block;
  height: auto;
  border: 0;
  background-size: 100% auto;
}

.main-txt_area {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.6) 60%
  );
}

.main-txt_cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: calc(5% + 30px);
  padding-bottom: 60px;
  padding-left: calc(5% + 30px);
}

@media screen and (max-width: 768px) {
  .main-txt_cover {
    padding-bottom: 5px;
    padding-right: 5%;
  }
}

.main-txt_box {
  color: #fff;
  flex: 1;
}

.main-txt_box > .title {
  font-size: 4rem;
}

.main-txt_link {
  width: 190px;
  margin: 0 0 0 auto;
}

.main-txt_link > a {
  padding-top: 12px;
  padding-bottom: 10px;
  position: relative;
  display: block;
  padding: 6px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
}

.main-txt_link > a:hover {
  background-color: #00c4a7;
}

.slick-arrow {
  border: none;
  background: rgba(0, 0, 0, 0);
}

#contents .footer-content a {
  padding-left: 1rem;
  text-decoration: none;
  color: #333;
}

#contents .footer-content a:hover {
  color: blue;
  text-decoration-line: underline;
}

#contents .footer-content h3 {
  padding: 0 1rem;
  border-left: 4px solid #b83434;
  border-bottom: none;
  position: relative;
  right: -26px;
  margin: 14px 0;
}

#contents .footer-content p {
  padding: 0 0 1rem 2rem;
}

#contents .footer-content ol.parentheses {
  padding-left: 4rem;
}

#contents .footer-content ul.icon-parentheses {
  padding-left: 3rem;
}

#contents .footer-content ul.parentheses {
  padding-left: 4rem;
  list-style: disc;
}

ol.paragraph-parentheses,
ol.roman-parentheses {
  text-indent: 0rem;
}

ol.paragraph-parentheses li {
  list-style-type: none;
  counter-increment: cnt1;
  position: relative;
  padding-left: 1.3rem;
}

ol.paragraph-parentheses li:before {
  content: "(" counter(cnt1) ")";
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
}

ol.roman-parentheses {
  list-style-type: upper-roman;
}

ol.roman-parentheses li {
  list-style-type: none;
  counter-increment: cnt2;
}

ol.roman-parentheses li:before {
  content: counter(cnt2, lower-roman) ".";
  position: absolute;
  left: 0;
}

ul.icon-parentheses li {
  list-style: none;
}

ul.icon-parentheses li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-weight: 900;
  color: #b83434;
  font-size: 1.8rem;
  margin: 2px 0;
}

.recommended {
  position: relative;
}

.recommended::after {
  content: " *推奨";
  color: red;
  position: absolute;
  left: 262px;
}

@media screen and (max-width: 768px) {
  * {
    font-size: 16px !important;
  }

  .recommended::after {
    position: absolute;
    right: 172px;
  }
}

@media screen and (max-width: 384px) {
  .recommended::after {
    position: absolute;
    left: 170px;
    right: 0;
  }

  .footer-content .container {
    display: block;
  }

  .footer-content span {
    display: inline-block;
    width: 290px;
  }
}

@media screen and (max-width: 830px) {
  .header-top {
    height: 90px;
  }

  .header-top .inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }

  .header-top .header-title,
  .header-top .header-menu {
    display: flex;
    align-items: center;
  }

  .header-top .header-title {
    font-size: 1.8rem;
    font-weight: normal;
    margin: auto;
  }

  .header-top .header-menu {
    display: none;
  }

  #menu-s {
    overflow: auto;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #fff;
    animation-name: frame1;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    font-size: 16px;
  }

  #menu-s li span {
    margin-left: 20px;
    font-size: 80%;
  }

  #menu-s ul li a,
  #menu_btn2 {
    display: block;
    text-decoration: none;
    padding: 30px 20px 30px 60px;
    border-bottom: 1px solid #fff;
    color: #fff;
  }

  #menu {
    display: none;
  }

  #mobile_menu {
    display: inline;
  }

  #menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 20px;
    right: 2%;
    border-radius: 4px;
  }

  #menu_btn.close,
  #menu_btn.open {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
  }

  #menu_btn .lines {
    position: relative;
    width: 100%;
    height: 100%;
  }

  #menu_btn.close {
    background: #000;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 43%;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  #menu_btn.open {
    background: #000;
  }

  .open .menu-trigger span:nth-of-type(1) {
    width: 45%;
    transform: translate3d(2px, 5px, 0) rotate(45deg);
  }

  .open .menu-trigger span:nth-of-type(2) {
    transform: translate3d(-1px, 0, 0) rotate(-45deg);
  }

  .open .menu-trigger span:nth-of-type(3) {
    width: 45%;
    transform: translate3d(19px, -5px, 0) rotate(45deg);
  }

  #contents {
    padding: 50px 0;
  }

  #contents .headline {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  #contents .list-column h4 {
    margin-bottom: 0px;
  }

  .container {
    font-size: 0.8rem;
  }

  body.s-n .sub,
  body.s-n #footermenu {
    display: none;
  }

  #footermenu > li:nth-child(n + 2) {
    border-left: none !important;
  }

  .big1 {
    font-size: 20px;
  }
}

.quality {
  text-align: center;
}

.quality > ul > li {
  margin-bottom: 5rem;
}

#contents .quality > ul > li > div > a {
  color: #007199;
  font-size: 2rem;
  font-weight: bold;
  padding: 0;
}

#contents .quality > ul > li > div {
  display: table;
  margin: 0 auto 2rem auto;
}

.quality > ul > li > ul > li {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.quality-title {
  height: auto;
  position: relative;
  margin-bottom: 1rem;
}

.quality-title img {
  max-width: 1500px;
  width: 90vw;
  height: auto;
}

.quality-title > p {
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  font-size: 45px;
  color: white;
}

.yellow-stripe {
  background: repeating-linear-gradient(
    45deg,
    rgb(254, 231, 73),
    rgb(254, 231, 73) 2px,
    #ffffff00 2px,
    #ffffff00 5px
  );
  height: 5px;
  border-width: 0;
  margin: 0;
}
