@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap");
.flex_block {
  display: flex;
}

.writing_mode_rl {
  writing-mode: vertical-rl;
  vertical-align: bottom;
}

html {
  overflow-y: scroll;
}

body.open {
  height: 100vh;
  overflow: hidden;
}

.mask {
  cursor: pointer;
  position: fixed;
  background-color: rgba(50, 60, 70, 0.6);
  inset: 0;
  z-index: 100;
  top: 200px;
  height: 100vh;
}
@media (max-width: 1680px) {
  .mask {
    top: 180px;
  }
}
@media (max-width: 1000px) {
  .mask {
    top: 135px;
  }
}
.mask.hidden {
  display: none;
}

.hidden {
  display: none;
}

.header_block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  align-items: center;
  justify-content: space-between;
  height: 200px;
}
@media (max-width: 1680px) {
  .header_block {
    height: 180px;
  }
}
@media (max-width: 1000px) {
  .header_block {
    height: 135px;
  }
}
@media (max-width: 1680px) {
  .header_block .site_logo {
    width: 180px;
  }
}
@media (max-width: 1000px) {
  .header_block .site_logo {
    width: 100%;
  }
}
.header_block .site_logo a {
  display: flex;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 1680px) {
  .header_block .site_logo a {
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .header_block .site_logo a {
    width: 100%;
    height: 74px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.header_block .site_logo a:hover {
  color: inherit;
  opacity: 0.7;
}
.header_block .site_logo img {
  width: 160px;
  height: 100px;
  margin-right: 40px;
  margin-left: 40px;
}
@media (max-width: 1680px) {
  .header_block .site_logo img {
    width: 120px;
    height: auto;
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (max-width: 1000px) {
  .header_block .site_logo img {
    width: 75px;
    height: 47px;
  }
}
.header_block .site_logo span {
  display: block;
  font-size: 28px;
  line-height: 1.4;
}
@media (max-width: 1680px) {
  .header_block .site_logo span {
    font-size: 16px;
    text-align: center;
    margin-top: 0.5em;
  }
  .header_block .site_logo span br {
    display: none;
  }
}
@media (max-width: 1000px) {
  .header_block .site_logo span {
    font-size: 18px;
    margin-top: 0;
    padding-right: 20px;
  }
}
.header_block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_block ul a {
  text-decoration: none;
}
@media (max-width: 1680px) {
  .header_block .header_nav {
    width: calc(100% - 420px);
  }
}
@media (max-width: 1000px) {
  .header_block .header_nav {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .header_block .header_nav .pc_nav {
    display: none;
  }
}
.header_block .header_nav .sp_nav {
  display: none;
}
@media (max-width: 1000px) {
  .header_block .header_nav .sp_nav {
    display: flex;
    border-top: solid 1px #323c46;
    border-bottom: solid 1px #323c46;
    align-items: center;
  }
  .header_block .header_nav .sp_nav li {
    width: 20%;
    height: 60px;
    font-weight: bold;
  }
  .header_block .header_nav .sp_nav li + li {
    border-left: 1px solid #323c46;
  }
}
.header_block .header_nav .sp_nav span.en {
  font-size: 11px;
  font-weight: bold;
  display: block;
  margin-top: 0.5em;
}
.header_block .header_nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 990px;
}
@media (max-width: 1680px) {
  .header_block .header_nav ul {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1000px) {
  .header_block .header_nav ul {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.header_block .header_nav li {
  text-align: center;
  font-size: 20px;
  width: 16.6666666667%;
}
@media (max-width: 1680px) {
  .header_block .header_nav li {
    width: 16.6666666667%;
    font-size: 15px;
  }
}
.header_block .header_nav li > a {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
}
.header_block .header_nav li > a:hover {
  color: inherit;
}
@media (min-width: 1001px) {
  .header_block .header_nav li > a {
    position: relative;
    padding-top: 1em;
    padding-bottom: 2em;
  }
  .header_block .header_nav li > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: #dae1e3;
    margin-top: 1em;
    transition: all 0.3s;
  }
  .header_block .header_nav li > a:hover::after {
    background-color: #b40c18;
  }
  .header_block .header_nav li > a.active::after {
    background-color: #b40c18;
  }
  .header_block .header_nav li > a.has_child::before {
    content: "";
    display: block;
    background-image: url(/common/img/icon/arrow_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 34px;
    height: 12px;
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1000px) {
  .header_block .header_nav li > a {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    display: grid;
    justify-items: center;
    align-content: center;
  }
  .header_block .header_nav li > a:hover {
    border-bottom: none;
  }
}
.header_block .header_nav li.toggle_menu {
  cursor: pointer;
  background-color: #323c46;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media (max-width: 1000px) {
  .header_block .header_nav li.toggle_menu .toggle_btn {
    width: 25px;
    margin-right: auto;
    margin-left: auto;
    color: #fff;
  }
  .header_block .header_nav li.toggle_menu .toggle_btn > span {
    background-color: #fff;
    width: 25px;
    height: 2px;
    display: block;
    margin-bottom: 4px;
    transition: transform 0.7s;
  }
  .header_block .header_nav li.toggle_menu .toggle_btn > span:last-child {
    margin-bottom: 0;
  }
}
.header_block .header_nav li.toggle_menu .en_menu {
  font-size: 11px;
  color: #fff;
  line-height: 1;
  margin-top: 0.7em;
}
.header_block .header_link {
  height: 100%;
  border-left: solid 1px #28558c;
  width: 300px;
}
@media (max-width: 1680px) {
  .header_block .header_link {
    width: 240px;
  }
}
@media (max-width: 1000px) {
  .header_block .header_link {
    width: 100%;
    border-left: none;
    z-index: 200;
    display: none;
  }
}
.header_block .header_link li {
  height: 66.6666666667px;
  line-height: 66.6666666667px;
}
@media (max-width: 1680px) {
  .header_block .header_link li {
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1000px) {
  .header_block .header_link li {
    height: 60px;
    line-height: 60px;
  }
}
.header_block .header_link li a {
  display: block;
  text-align: center;
  transition: all 0.3s;
}
.header_block .header_link li a:hover {
  color: inherit;
  opacity: 0.8;
}
.header_block .header_link li a::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 28px;
  height: 28px;
  background-size: contain;
  vertical-align: middle;
}
.header_block .header_link li .instagram {
  background-color: #fff;
  font-size: 18px;
}
.header_block .header_link li .instagram::before {
  background-image: url(/common/img/icon/icon_instagram.svg);
}
.header_block .header_link li .tel_link {
  background-color: #28558c;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 20px;
  height: 66px;
  line-height: 44px;
}
@media (max-width: 1680px) {
  .header_block .header_link li .tel_link {
    height: 60px;
    line-height: 40px;
    font-size: 18px;
  }
}
.header_block .header_link li .tel_link::before {
  background-image: url(/common/img/icon/icon_tel.svg);
}
.header_block .header_link li .tel_link::after {
  content: "（電話受付：8:30-17:30）";
  display: block;
  line-height: 1;
  margin-top: -3px;
  font-size: 13px;
}
.header_block .header_link li .tel_link:hover {
  color: #fff !important;
}
.header_block .header_link li .contact {
  margin-top: 1px;
  background-color: #28558c;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1680px) {
  .header_block .header_link li .contact {
    font-size: 16px;
  }
}
.header_block .header_link li .contact::before {
  background-image: url(/common/img/icon/icon_contact.svg);
}
.header_block .header_link li .contact:hover {
  color: #fff !important;
}
@media (max-width: 1000px) {
  .header_block .sp_header_link {
    width: 100%;
  }
}
.header_block .sp_header_link li {
  width: 100%;
}
.header_block .sp_header_link li a {
  display: block;
  height: 60px;
  line-height: 60px;
  color: inherit;
}
.header_block .sp_header_link li a span {
  display: block;
  width: 315px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
.header_block .sp_header_link li a span::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 28px;
  height: 28px;
  background-size: contain;
  vertical-align: middle;
}
.header_block .sp_header_link li a:hover {
  opacity: 0.7;
}
.header_block .sp_header_link li.instagram {
  background-color: #fff;
  font-size: 18px;
}
.header_block .sp_header_link li.instagram span::before {
  background-image: url(/common/img/icon/icon_instagram.svg);
}
.header_block .sp_header_link li.tel_link {
  background-color: #28558c;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 20px;
}
.header_block .sp_header_link li.tel_link span::before {
  background-image: url(/common/img/icon/icon_tel.svg);
}
.header_block .sp_header_link li.tel_link a {
  height: 70px;
  line-height: 50px;
}
.header_block .sp_header_link li.tel_link a span::after {
  content: "（電話受付：8:30-17:30）";
  display: block;
  margin-top: -25px;
  margin-left: 36px;
  font-size: 13px;
  width: -moz-fit-content;
  width: fit-content;
}
.header_block .sp_header_link li.contact {
  margin-top: 1px;
  background-color: #28558c;
  color: #fff;
  font-size: 18px;
}
.header_block .sp_header_link li.contact span::before {
  background-image: url(/common/img/icon/icon_contact.svg);
}
.header_block .caution {
  display: flex;
  align-items: center;
}
@media (min-width: 1001px) {
  .header_block .caution .icon_caution {
    width: 183px;
    height: 165px;
    text-align: center;
    border-left: solid 1px #323c46;
  }
}
@media (max-width: 1000px) {
  .header_block .caution .icon_caution {
    margin-right: 2em;
  }
}
.header_block .caution .icon_caution img {
  width: 77px;
  height: 77px;
}
.header_block .caution .text_small {
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .header_block .caution .text_small {
    font-size: 12px;
  }
}
@media (min-width: 1001px) {
  .header_block .caution {
    position: absolute;
    bottom: 30px;
    right: 31px;
    width: 348px;
    height: 165px;
  }
}
@media (max-width: 1000px) {
  .header_block .caution {
    width: 315px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    border: solid 1px #323c46;
    border-radius: 5px;
    padding: 20px 30px;
  }
}

.child_menu {
  z-index: 200;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 10px;
  width: 649px;
  width: 650px;
}
.child_menu.small_menu {
  width: 458px;
}
@media (max-width: 1680px) {
  .child_menu {
    top: 280px;
  }
}
@media (max-width: 1000px) {
  .child_menu {
    top: 134px;
    border-radius: 0;
    width: 100%;
    padding-bottom: 40px;
  }
}
@media (max-width: 1000px) {
  .child_menu.sp_visible {
    padding-bottom: 0;
  }
}
.child_menu .icon_menu {
  display: flex;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu {
    flex-direction: column;
  }
}
.child_menu .icon_menu dt {
  position: relative;
  width: 76px;
  font-size: 22px;
  font-weight: bold;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  border-right: solid 1px #323c46;
  transition: all 0.3s;
}
.child_menu .icon_menu dt:hover {
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dt {
    width: 315px;
    margin-right: auto;
    margin-left: auto;
    writing-mode: initial;
    border-right: none;
    font-size: 42px;
  }
}
.child_menu .icon_menu dt a::after {
  content: "";
  background-repeat: no-repeat;
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dt a::after {
    top: 40px;
    left: initial;
    right: 0;
    bottom: initial;
    transform: initial;
  }
}
.child_menu .icon_menu dt a {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1001px) {
  .child_menu .icon_menu dt a {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dt a {
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) {
  .child_menu .icon_menu .sp_link_description {
    position: absolute;
    top: 20px;
    left: 105px;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu .sp_link_description {
    width: 315px;
    margin: 20px auto;
    font-size: 16px;
  }
  .child_menu .icon_menu .sp_link_description a {
    display: block;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    padding: 0.5em 0.5em 0.7em;
    width: 100%;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1;
  }
  .child_menu .icon_menu .sp_link_description a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu.gassyuku_menu {
    border-top: solid 15px #328c32;
  }
}
.child_menu .icon_menu.gassyuku_menu dt {
  color: #328c32;
  line-height: 1;
}
.child_menu .icon_menu.gassyuku_menu dt a::after {
  background-image: url(/common/img/icon/arrow_green.svg);
}
.child_menu .icon_menu.gassyuku_menu dd a:hover {
  background-color: #328c32;
}
@media (min-width: 1001px) {
  .child_menu .icon_menu.gassyuku_menu .sp_link_description {
    border: solid 1.5px #328c32;
    border-radius: 8px;
    transition: all 0.3s;
  }
  .child_menu .icon_menu.gassyuku_menu .sp_link_description:hover {
    opacity: 0.7;
  }
  .child_menu .icon_menu.gassyuku_menu .sp_link_description a {
    color: #328c32;
    text-decoration: none;
    font-size: 18px;
    width: 495px;
    display: block;
    position: relative;
    font-weight: 500;
    text-align: center;
    padding-right: 2em;
    line-height: 46px;
    height: 46px;
  }
  .child_menu .icon_menu.gassyuku_menu .sp_link_description::after {
    background-image: url(/common/img/icon/arrow_green.svg);
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu.gassyuku_menu .sp_link_description a {
    background-color: #328c32;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu.tsugaku_menu {
    border-top: solid 15px #d27800;
  }
}
.child_menu .icon_menu.tsugaku_menu dt {
  color: #d27800;
  line-height: 1;
}
.child_menu .icon_menu.tsugaku_menu dt a::after {
  background-image: url(/common/img/icon/arrow_orange.svg);
}
.child_menu .icon_menu.tsugaku_menu dd a:hover {
  background-color: #d27800;
}
@media (min-width: 1001px) {
  .child_menu .icon_menu.tsugaku_menu .sp_link_description {
    border: solid 1.5px #d27800;
    border-radius: 8px;
    transition: all 0.3s;
  }
  .child_menu .icon_menu.tsugaku_menu .sp_link_description:hover {
    opacity: 0.7;
  }
  .child_menu .icon_menu.tsugaku_menu .sp_link_description a {
    color: #d27800;
    text-decoration: none;
    font-size: 18px;
    width: 495px;
    display: block;
    position: relative;
    font-weight: 500;
    text-align: center;
    padding-right: 2em;
    line-height: 46px;
    height: 46px;
  }
  .child_menu .icon_menu.tsugaku_menu .sp_link_description::after {
    background-image: url(/common/img/icon/icon_arrow_orange.svg);
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu.tsugaku_menu .sp_link_description a {
    background-color: #d27800;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu.company_menu {
    border-top: solid 15px #28558c;
  }
}
.child_menu .icon_menu.company_menu dt {
  color: #28558c;
  line-height: 1;
}
.child_menu .icon_menu.company_menu dt a::after {
  background-image: url(/common/img/icon/arrow_red.svg);
}
.child_menu .icon_menu.company_menu dd a:hover {
  background-color: #28558c;
}
.child_menu .icon_menu .child_menu_block {
  width: 574px;
  padding: 30px;
  display: grid;
  grid-template-columns: 165px 183px 165px;
}
.child_menu .icon_menu .child_menu_block.small_block {
  width: 458px;
  grid-template-columns: 165px 165px;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu .child_menu_block {
    width: 315px;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    margin-right: auto;
    margin-left: auto;
  }
}
.child_menu .icon_menu dd {
  height: 165px;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dd {
    height: 157px;
  }
}
.child_menu .icon_menu dd a {
  display: grid;
  height: 147px;
  width: 147px;
  font-size: 18px;
  align-content: center;
  justify-items: center;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dd a {
    height: 135px;
    width: 135px;
    font-size: 16px;
  }
}
.child_menu .icon_menu dd a:hover {
  color: #fff;
  border-radius: 10px;
}
@media (min-width: 1001px) {
  .child_menu .icon_menu dd:nth-child(1) {
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(2) {
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(3) {
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(2) a {
    margin: 0 auto 18px;
  }
  .child_menu .icon_menu dd:nth-child(4) a {
    margin: 18px 18px 0 0;
  }
  .child_menu .icon_menu dd:nth-child(5) a {
    margin: 18px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(6) a {
    margin: 18px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(3n+2) {
    border-right: solid 1px #323c46;
    border-left: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(3n+3) a {
    margin-left: 18px;
  }
}
@media (max-width: 1000px) {
  .child_menu .icon_menu dd:nth-child(1) {
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(2) {
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(3n+2) {
    border-right: none;
    border-left: none;
  }
  .child_menu .icon_menu dd:nth-child(3n+3) a {
    margin-left: 0;
  }
  .child_menu .icon_menu dd:nth-child(2) a {
    margin: 0 auto 22px;
  }
  .child_menu .icon_menu dd:nth-child(3) {
    height: 179px;
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(3).remove_mb {
    height: 154px;
    border-bottom: none;
  }
  .child_menu .icon_menu dd:nth-child(3) a {
    margin: 22px auto;
  }
  .child_menu .icon_menu dd:nth-child(3).remove_mb a {
    margin: 22px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(4) {
    height: 179px;
    border-bottom: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(4).remove_mb {
    height: 154px;
    border-bottom: none;
  }
  .child_menu .icon_menu dd:nth-child(4) a {
    margin: 22px auto;
  }
  .child_menu .icon_menu dd:nth-child(4).remove_mb a {
    margin: 22px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(5) a {
    margin: 22px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(6) a {
    margin: 22px auto 0;
  }
  .child_menu .icon_menu dd:nth-child(odd) {
    border-right: solid 1px #323c46;
  }
  .child_menu .icon_menu dd:nth-child(odd) a {
    margin-right: 22px;
  }
  .child_menu .icon_menu dd:nth-child(even) {
    border-right: none;
  }
  .child_menu .icon_menu dd:nth-child(even) a {
    margin-left: 22px;
  }
}
.child_menu dd a {
  line-height: 1;
  transition: all 0.3s;
}
.child_menu dd a:hover.fee::before {
  content: url(/common/img/icon/icon_fee_active.svg);
  display: block;
}
.child_menu dd a:hover.car::before {
  content: url(/common/img/icon/icon_car_active.svg);
  display: block;
}
.child_menu dd a:hover.truck::before {
  content: url(/common/img/icon/icon_truck_active.svg);
  display: block;
}
.child_menu dd a:hover.wheel_loader::before {
  content: url(/common/img/icon/icon_wheel_loader_active.svg);
  display: block;
}
.child_menu dd a:hover.bike::before {
  content: url(/common/img/icon/icon_bike_active.svg);
  display: block;
}
.child_menu dd a:hover.taxi::before {
  content: url(/common/img/icon/icon_taxi_active.svg);
  display: block;
}
.child_menu dd a:hover.company::before {
  content: url(/common/img/icon/icon_company_active.svg);
  display: block;
}
.child_menu dd a:hover.access::before {
  content: url(/common/img/icon/icon_access_active.svg);
  display: block;
}
.child_menu dd a:hover.recruit::before {
  content: url(/common/img/icon/icon_recruit_active.svg);
  display: block;
}
.child_menu dd a:hover.law::before {
  content: url(/common/img/icon/icon_law_active.svg);
  display: block;
}
.child_menu dd a:hover.qa::before {
  content: url(/common/img/icon/icon_qa_active.svg);
  display: block;
}
.child_menu dd a:hover.privacy::before {
  content: url(/common/img/icon/icon_privacy_active.svg);
  display: block;
}
.child_menu .fee::before {
  content: url(/common/img/icon/icon_fee.svg);
  display: block;
}
.child_menu .car::before {
  content: url(/common/img/icon/icon_car.svg);
  display: block;
}
.child_menu .truck::before {
  content: url(/common/img/icon/icon_truck.svg);
  display: block;
}
.child_menu .wheel_loader::before {
  content: url(/common/img/icon/icon_wheel_loader.svg);
  display: block;
}
.child_menu .bike::before {
  content: url(/common/img/icon/icon_bike.svg);
  display: block;
}
.child_menu .taxi::before {
  content: url(/common/img/icon/icon_taxi.svg);
  display: block;
}
.child_menu .company::before {
  content: url(/common/img/icon/icon_company.svg);
  display: block;
}
.child_menu .access::before {
  content: url(/common/img/icon/icon_access.svg);
  display: block;
}
.child_menu .recruit::before {
  content: url(/common/img/icon/icon_recruit.svg);
  display: block;
}
.child_menu .law::before {
  content: url(/common/img/icon/icon_law.svg);
  display: block;
}
.child_menu .qa::before {
  content: url(/common/img/icon/icon_qa.svg);
  display: block;
}
.child_menu .privacy::before {
  content: url(/common/img/icon/icon_privacy.svg);
  display: block;
}
.child_menu dl.other_menu {
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .child_menu dl.other_menu {
    border-top: solid 15px #28558c;
    margin-bottom: 20px;
  }
}
.child_menu dl.other_menu dt {
  width: 315px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  color: #28558c;
  font-size: 40px;
  font-weight: bold;
}
.child_menu dl.other_menu dd {
  width: 315px;
  margin-right: auto;
  margin-left: auto;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.child_menu dl.other_menu dd a:hover {
  color: inherit;
  opacity: 0.8;
}
.child_menu dl.other_menu dd > a {
  text-decoration: none;
  background-image: url(/common/img/icon/arrow_small.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left center;
  padding-left: 1.8em;
  display: block;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
.child_menu dl.other_menu .type {
  display: flex;
  font-size: 15px;
  margin-left: 2.5em;
  justify-content: space-between;
  margin-bottom: 20px;
}
.child_menu dl.other_menu .type span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  height: 34px;
  line-height: 34px;
  margin-bottom: 3px;
}
.child_menu dl.other_menu .type a {
  text-decoration: none;
  width: 130px;
  height: 60px;
  text-align: center;
  border-radius: 5px;
}
.child_menu dl.other_menu .type .type_gassyuku {
  border: solid 1px #328c32;
}
.child_menu dl.other_menu .type .type_gassyuku span {
  background-color: #328c32;
}
.child_menu dl.other_menu .type .type_tsugaku {
  border: solid 1px #d27800;
}
.child_menu dl.other_menu .type .type_tsugaku span {
  background-color: #d27800;
}

@media (min-width: 1001px) {
  .icon_menu.gassyuku_menu .child_menu_block,
  .icon_menu.tsugaku_menu .child_menu_block {
    padding: 90px 30px 30px;
  }
}
.position_center {
  display: grid;
  align-content: center;
  justify-items: center;
}

@media (min-width: 1001px) {
  .sp_visible {
    display: none;
  }
  .pc_add_border_right {
    border-right: solid 1px #323c46;
  }
}
@media (max-width: 1000px) {
  .pc_visible {
    display: none;
  }
}
.toggle_menu.open .toggle_btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(6px) rotate(135deg);
}
.toggle_menu.open .toggle_btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-10px) scaleX(0);
}
.toggle_menu.open .toggle_btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-6px) rotate(-135deg);
}

.fee_menu {
  display: flex;
}

.child_menu .fee_menu dt {
  width: 76px;
  font-size: 22px;
  font-weight: bold;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding-top: 30px;
  border-right: solid 1px #323c46;
  color: #28558c;
}

.child_menu .fee_menu .fee_item {
  padding: 30px;
  display: grid;
  grid-template-columns: 165px 165px;
}

.child_menu .fee_menu dd:nth-child(2) {
  border-left: solid 1px #323c46;
}
.child_menu .fee_menu dd:nth-child(2) a {
  margin-left: 18px;
}

.child_menu .fee_menu dd a {
  display: grid;
  height: 147px;
  width: 147px;
  border-radius: 10px;
  font-size: 20px;
  letter-spacing: 0.05em;
  align-content: center;
  justify-items: center;
  text-decoration: none;
  background-color: #fff;
  font-weight: bold;
}
.child_menu .fee_menu dd a span {
  font-size: 48px;
  display: block;
  margin-bottom: 0.2em;
}
.child_menu .fee_menu dd a.fee_item1 {
  color: #328c32;
}
.child_menu .fee_menu dd a.fee_item2 {
  color: #d27800;
}
.child_menu .fee_menu dd a.fee_item1:hover {
  background-color: #328c32;
  color: #fff;
}
.child_menu .fee_menu dd a.fee_item2:hover {
  background-color: #d27800;
  color: #fff;
}/*# sourceMappingURL=header.css.map */eMappingURL=header.css.map */