@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500&display=swap');
@font-face {
	font-family: 'Oswald';
	src: url('../font/Oswald-Regular.ttf')  format('truetype');
}
/* ------------------------------
- reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  line-height: 1;
  box-sizing: border-box;
}
html {
  font-size: 14px;
}
body {
  background-color: #fff;
  color: #333;
  width: 100%;
  font-family: YuGothic,"Yu Gothic","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  overflow-x: hidden;
}
main {
  display: block;
}
li {
  list-style-type: none;
}
a {
  color: #333;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
*::before,
*::after {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1, h2, h3, h4, h5, h6, a, li, a span {
  line-height: 1.5;
}
p, p a ,p span {
  line-height: 1.7;
}
sup {
  font-size: 0.5em;
  vertical-align: super;
}
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: 0;
}
select::-ms-expand {
    display: none;
}
input::placeholder,
textarea::placeholder {
  color: #e6e6e6;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #e6e6e6;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #e6e6e6;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@media only screen and (min-width: 750px) {
  html {
    font-size: 14px;
  }
}
/* ------------------------------
- body
------------------------------ */
body {
  padding-top: 60px;
  overflow-x: hidden;
}
@media only screen and (min-width: 750px) {

}
@media only screen and (min-width: 1000px) {
  body {
    padding-top: 100px;
  }
}
/* ------------------------------
- utility
------------------------------ */
.visible-lg,
.visible-md {
  display: none;
}
.visible-sm {
  display: inherit;
}
@media only screen and (min-width: 750px) {
  .visible-sm,
  .visible-lg {
    display: none;
  }
  .visible-md {
    display: inherit;
  }
}
@media only screen and (min-width: 1000px) {
  .visible-sm,
  .visible-md {
    display: none;
  }
  .visible-lg {
    display: inherit;
  }
}
/* ------------------------------
- layout
------------------------------ */
.l-content-lg,
.l-content-md,
.l-content-sm {
  padding: 0 10px;
}
@media only screen and (min-width: 750px) {
  .l-content-lg,
  .l-content-md,
  .l-content-sm {
    width: 90%;
    max-width: 780px;
    padding: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1000px) {
  .l-content-lg {
    max-width: 1288px;
  }
  .l-content-md {
    max-width: 1100px;
  }
  .l-content-sm {
    max-width: 940px;
  }
}
/* ------------------------------
- l-row
------------------------------ */
.l-row {
  padding-top: 20px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 1000px) {
  .l-row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 90px;
  }
  .col-main {
    width: 71%;
    width: calc(100% - 260px);
  }
  .col-side {
    max-width: 260px;
    min-width: 260px;
  }
}
/* ------------------------------
- ff
------------------------------ */
.ff-oswald {
  font-family: 'Oswald', sans-serif;
}
/* ------------------------------
- bg
------------------------------ */
.bg-gray {
  background: #f7f7f7;
}
/* ------------------------------
- is
------------------------------ */
@media only screen and (min-width: 750px) {
  .is-img-scale {
    overflow: hidden;
    position: relative;
    display: block;
  }
  .is-img-scale::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #333;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 10;
  }
  .is-img-scale::after {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  .is-img-scale img {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
  }
  a:hover .is-img-scale img {
    transform: scale(1.1);
  }
  a:hover .is-img-scale::after {
    opacity: .3;
  }
}
/* ------------------------------
- header
------------------------------ */
header {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 60px;
  padding: 0 60px 0 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
  top: 0;
  left: 0;
}
.header_logo {
  width: 100px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.is-active .header_logo {
  opacity: 0;
}
.ham {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  background: #333;
  padding-top: 36px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.ham_top,
.ham-bottom {
  background: #fff;
  border: none;
  width: 27px;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ham_top {
  top: 16px;
}
.ham-bottom {
  top: 25px;
}
.ham-menu::before {
  content: 'MENU';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
}
.is-active .ham_top {
  top: 19px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}
.is-active .ham-bottom {
  top: 19px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.is-active .ham-menu::before {
  content: 'CLOSE';
}
.nav {
  background: #fff;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  padding: 60px 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  z-index: -10;
  visibility: hidden;
}
@media only screen and (max-width: 999px) {
  .nav {
    position: fixed;
  }
}
.is-active .nav {
  opacity: 1;
  z-index: 40;
  visibility: visible;
}
.nav_child {
  display: none;
  background: #ededed;
}
.nav_link,
.nav_child_item,
.nav_sub_item {
  width: 100%;
  font-weight: bold;
  padding: 12px 10px;
  position: relative;
  text-align: center;
}
.nav_link,
.nav_sub_item {
  font-size: 13px;
  border-top: 1px solid #ededed;
}
.nav_splink::after {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  right: 15px;
  border-radius: 2px;
  border-top: 2px solid #ca0000;
  border-right: 2px solid #ca0000;
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.is-tap.nav_splink::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.nav_child_item {
  font-size: 12px;
  border-top: 1px solid #fff;
}
.nav_sub {
  border-bottom: 1px solid #ededed;
}
.header_contact {
  width: 95%;
  height: 60px;
  padding-top: 30px;
  background: #ca0000 url(../images/common/icon_mail.svg) no-repeat center top 10px/20px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px auto;
  display: block;
}
.header_contact_sp {
  width: 60px;
  height: 60px;
  padding-top: 36px;
  background: #ca0000 url(../images/common/icon_mail.svg) no-repeat center top 13px/27px;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 1000px) {
  header {
    height: 100px;
    padding: 30px 130px 0 30px;
  }
  .header_logo {
    width: 130px;
  }
  .ham {
    display: none;
  }
  .nav {
    z-index: 1;
    padding: 0;
    opacity: 1;
    width: auto;
    height: auto;
    visibility: visible;
  }
  .nav_list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
  .nav_child {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
  }
  .nav_child_list {
    padding: 10px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav_link,
  .nav_child_item {
    font-size: 14px;
    font-weight: bold;
    padding: 0 35px;
    position: relative;
  }
  .nav_child_item_oya {
    display: none;
  }
  .is-hover .nav_link,
  .nav_link:hover,
  .nav_child_item:hover {
    color: #ca0000;
  }
  .nav_item + .nav_item .nav_link {
    border-left: 1px solid #ca0000;
  }
  .nav_splink::after {
    display: none;
  }
  .nav_splink::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 25px;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .is-hover .nav_splink::before {
    width: 100vw;
  }
  .nav_child_item {
    padding: 10px 20px;
  }
  .nav_sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    padding-right: 160px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: #000;
  }
  .nav_sub_item {
    color: #999;
    font-size: 12px;
    padding: 5px 0 0 10px;
    position: relative;
    margin-left: 15px;
    width: auto;
  }
  .nav_sub_item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2px 0 2px 4px;
    border-color: transparent transparent transparent #ca0000;
    top: 13px;
    left: 0;
  }
  .nav_link,
  .nav_child_item,
  .nav_sub_item {
    text-align: left;
    border: none;
    width: auto;
  }
  .header_contact {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 110px;
    padding-top: 60px;
    background: #ca0000 url(../images/common/icon_mail.svg) no-repeat center top 26px/37px;
    margin: 0;
  }
  .header_contact:hover {
    background: #970000 url(../images/common/icon_mail.svg) no-repeat center top 26px/37px;
  }
  .header_contact_sp {
    display: none;
  }
}
/* ------------------------------
- footer
------------------------------ */
footer {
  background: #000;
  color: #ddd;
  position: relative;
  padding: 40px 0 0;
}
.footer_nav {
  border-bottom: 1px solid #333;
  margin-bottom: 50px;
}
.footer_nav_item {
  color: #ddd;
  display: block;
  padding: 11px 15px;
  font-size: 13px;
  border-top: 1px solid #333;
}
.footer_nav_subblock {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 15px;
}
.footer_nav_subitem {
  min-width: 50%;
  color: #ddd;
  position: relative;
  padding: 0 5px 0 10px;
  font-size: 11px;
  margin-bottom: 13px;
}
.footer_nav_subitem::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 1px;
  background: #ca0000;
}
.footer_info {
  text-align: center;
}
.footer_logo {
  width: 130px;
  margin-bottom: 30px;
}
.footer_address {
  font-size: 12px;
}
.footer_privacy {
  text-align: center;
  margin: 30px 0;
  color: #ddd;
  font-size: 12px;
  display: block;
}
.copyright {
  font-size: 10px;
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
}
@media only screen and (min-width: 750px) {
  footer {
    padding: 50px 0 0;
  }
  .footer_nav {
    border-bottom: none;
    margin-bottom: 50px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer_nav_block:not(:last-child) {
    padding-right: 30px;
  }
  .footer_nav_block:nth-child(2) {
    min-width: 220px;
  }
  .footer_nav_block:nth-child(3) {
    min-width: 112px;
  }
  .footer_nav_block:nth-child(4) {
    min-width: 107px;
  }
  .footer_nav_item {
    padding: 0;
    border: none;
    font-size: 14px;
  }
  .footer_nav_item + .footer_nav_item {
    margin-top: 20px;
  }
  .footer_nav_subblock {
    display: block;
    padding: 0;
    margin-top: 15px;
  }
  .footer_nav_subitem {
    padding: 0 0 0 10px;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
  }
}
@media only screen and (min-width: 1000px) {
  footer {
    padding: 65px 0;
  }
  .footer_main,
  .footer_bottom {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .footer_main {
    margin-bottom: 50px;
  }
  .footer_nav {
    width: 72%;
    margin-bottom: 0;
  }
  .footer_nav_block {
    /* min-width: 150px; */
  }
  .footer_info {
    text-align: left;
    width: 240px;
  }
  .footer_nav_item:hover,
  .footer_nav_subitem:hover,
  .footer_privacy:hover {
    text-decoration: underline;
  }
  .footer_bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
  }
  .footer_privacy {
    margin: 0;
    font-size: 11px;
  }
  .copyright {
    padding: 0;
    border: none;
  }
}
/* ------------------------------
- maincv
------------------------------ */
.maincv {
  background: url(../images/common/bg_maincv_sp.jpg) no-repeat center bottom /cover;
  padding: 50px 0;
}
.maincv_heading {
  text-align: center;
  font-size: 14px;
  letter-spacing: .1em;
  margin-bottom: 30px;
}
.maincv_heading_en {
  display: block;
  color: #ca0000;
  font-size: 2.4em;
  margin-bottom: 10px;
}
.maincv_block {
  text-align: center;
  position: relative;
}
.maincv_block_heading {
  font-size: 15px;
  margin-bottom: 10px;
}
.maincv_block_tel {
  font-size: 28px;
  font-weight: bold;
}
.maincv_block_time {
  font-size: 12px;
}
.maincv_block_tel_en {
  font-size: .5357em;
}
.maincv_block_btn {
  color: #fff;
  position: relative;
  z-index: 20;
  font-size: 14px;
  padding: 16px 40px;
}
.maincv_block_btn::before,
.maincv_block_btn::after {
  position: absolute;
  content: '';
  display: block;
}
.maincv_block_btn::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: -1;
}
.maincv_block_btn:hover::before {
  background: #970000;
}
.maincv_block_btn::after {
  width: 36px;
  height: 1px;
  background: #ca0000;
  top: 50%;
  right: -16px;
}
@media only screen and (max-width: 749px) {
  .maincv_block:nth-child(n+2) {
    margin-top: 25px;
    padding-top: 30px;
  }
  .maincv_block:nth-child(n+2)::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    background: #ca0000;
    width: 70px;
    height: 1px;
    margin-left: -35px;
  }
}
@media only screen and (min-width: 750px) {
  .maincv {
    background: url(../images/common/bg_maincv.jpg) no-repeat left center /cover;
    padding: 50px 0;
  }
  .maincv_content {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .maincv_block {
    width: 50%;
  }
}
@media only screen and (max-width: 999px)and ( min-width: 750px) {
  .maincv_block:nth-child(n+3) {
    margin-top: 25px;
    padding-top: 30px;
  }
  .maincv_block:nth-child(2)::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #ca0000;
    width: 1px;
    height: 100%;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
}
@media only screen and (min-width: 1000px) {
  .maincv {
    background: url(../images/common/bg_maincv.jpg) no-repeat center left /cover;
    padding: 50px 0;
  }
  .maincv_heading {
    text-align: center;
    font-size: 14px;
    letter-spacing: .1em;
    margin-bottom: 50px;
  }
  .maincv_heading_en {
    display: block;
    color: #ca0000;
    font-size: 2.85714em;
    margin-bottom: 10px;
  }
  .maincv_content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .maincv_block {
    width: 33.333%;
    padding: 10px 0;
  }
  .maincv_block:not(:nth-child(n+3))::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: #ca0000;
    width: 1px;
    height: 100%;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
}
/* ------------------------------
- head
------------------------------ */
.head-a {
  margin-bottom: 20px;
  position: relative;
}
.head-a_heading {
  background: #333;
  color: #fff;
  font-size: 16px;
  padding: 18px 75px 18px 15px;
}
.head-a_btn {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 0 20px 2px 0;
  color: #fff;
  border-bottom: 1px solid #ca0000;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
}
.subtop_heading > .heading_ja {
  font-size: 1.85rem;
  letter-spacing: .04em;
  padding-bottom: .6em;
  line-height: 1.2;
}
.subtop_heading > .heading_en {
  font-size: 0.85rem;
  letter-spacing: .04em;
  padding-bottom: 4.28rem;
}

@media only screen and (min-width: 1000px) {
  .head-a {
    margin-bottom: 40px;
  }
  .head-a_heading {
    font-size: 16px;
    padding: 15px 75px 15px 20px;
  }
  .head-a_btn {
    padding: 0 24px 4px 5px;
  }
}
/* ------------------------------
- btn
------------------------------ */
.btn-a {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  padding: 2px 1px;
  position: relative;
  font-size: 14px;
}
.btn-a::before,
.btn-a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.btn-a::before {
  background: #333;
}
.btn-b {
  background: #333;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  padding: 16px 30px;
  border-radius: 30px;
  width: 90%;
  position: relative;
  text-align: center;
}
.btn-b::after {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  right: -20px;
  width: 40px;
  height: 7px;
  background: url(../images/common/icon_arrow_r.svg) no-repeat center/contain;
}
@media only screen and (min-width: 750px) {
  .btn-b {
    padding: 19px 80px;
    width: auto;
    min-width: 340px;
  }
  .btn-b::after {
    top: 26px;
  }
}
@media only screen and (min-width: 1000px) {
  .btn-a {
    font-size: 18px;
    overflow: hidden;
  }
  .btn-a:hover {
    color: #ca0000;
  }
  .btn-a::before,
  .btn-a::after {
    height: 3px;
  }
  .btn-a::before {
    background: #333;
  }
  .btn-a::after {
    background: #ca0000;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-animation: topbtn-off .3s forwards;
    animation: topbtn-off .3s forwards;
  }
  .btn-a:hover::after {
    background: #ca0000;
    -webkit-animation: topbtn-on .3s forwards;
    animation: topbtn-on .3s forwards;
    box-sizing: border-box;
  }
  @-webkit-keyframes topbtn-on {
    0% {
      -webkit-transform: scaleX(0);
    }
    100% {
      -webkit-transform: scaleX(1);
    }
  }
  @keyframes topbtn-on {
    0% {
      transform: scaleX(0);
    }
    100% {
      transform: scaleX(1);
    }
  }
  @-webkit-keyframes topbtn-off {
    0% {
      -webkit-transform: scaleX(1);
    }
    100% {
      -webkit-transform: scaleX(0);
    }
  }
  @keyframes topbtn-off {
    0% {
      transform: scaleX(1);
    }
    100% {
      transform: scaleX(0);
    }
  }
  .btn-b {
    font-size: 15px;
  }
  .btn-b:hover {
    background: #666;
  }
  .btn-b:hover::after {
    right: -30px;
  }
}
/* ------------------------------
- latest
------------------------------ */
.latest {
  padding: 50px 0;
}




.top_h1 {
  display: none;
}

/* ------------------------------
- breadcrumb
------------------------------ */
.breadcrumb {
  position: absolute;
  z-index: 1;
  padding: 15px;
}

.breadcrumb-list li {
  display: inline;
  color: #ccc;
  font-size: .78em;
  position: relative;
  line-height: 1;
}
.breadcrumb-list li + li::before {
  content: '';
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  width: 4px;
  height: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  margin: 0 8px 2px 2px;
}

.breadcrumb-list li > a {
  color: #ccc;
}

.breadcrumb-list li > a:hover {
  text-decoration: underline;
}

/* ------------------------------
- mv
------------------------------ */
.mv {
  width: 100%;
  height: 60vh;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 2.85em;
  position: relative;
}

.mv::before, .mv::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 1px;
  height: 2.85em;
}

.mv::before {
  background-color: #fff;
  bottom: 2.85em;
}

.mv::after {
  background-color: #ca0000;
  bottom: 0;
}

.mv_img {
  width: 100%;
  height: 100%;
  background: url(../images/company/mv.jpg) no-repeat 30% 0/cover;
}
.mv_text {
  position: absolute;
  top: -2.85em;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1100px;
  width: 90%;
}

.mv_text *:not(.heading_en) {
  color: #fff;
}
.top_heading {
  line-height: 1.5
}

.mv_text > p:not(.top_heading) {
  line-height: 2;
  margin-top: 2.92rem;
  text-align: center;
}

.heading_en {
  font-family: 'Oswald', sans-serif;
  color: #ca0000;
  line-height: 1;
  display: block;
  text-align: center;
  font-weight: 400;
}

.heading_ja {
  display: block;
  text-align: center;
}

.top_heading > .heading_en {
  font-size: 2.85rem;
  letter-spacing: .04em;
  padding-bottom: .55em;
}

.top_heading > .heading_ja {
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 749px) {
  .mv_text {
    padding: 0 2.8em;
    width: 100%;
  }
}
@media only screen and (min-width: 750px) {
  .mv {
    /* height: 36.09vw; */
    max-height: 340px;
    margin-bottom: 1em;
  }
  .mv::before, .mv::after {
    height: 40px;
  }
  .mv::before {
    bottom: 40px;
  }
  .mv_img {
    background-position: 50% 0;
  }
}

/* ------------------------------
- detailnav
------------------------------ */
.detailnav-wrap:nth-of-type(1) .detailnav_nav {
  margin: 1em 0 3rem;
}

.detailnav-wrap:nth-of-type(2),
.detailnav-wrap-bottom {
    margin: 50px auto 30px;
}

.detailnav_nav ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detailnav_nav li {
  font-size: 0.92rem;
  font-weight: bold;
  padding: 5px 0;
}

.detailnav_nav li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ca0000;
  margin: auto;
  -webkit-transition: width .3s;
  transition: width .3s;
}

.detailnav_nav li:nth-child(1) ~ li::after {
  margin: 5px auto 0;
}

.detailnav_nav .current {
  color: #ca0000;
  padding-bottom: 0.5em;
}

.detailnav_nav .current::after {
  width: 3em;
}

.detailnav_nav .link-top {
  margin-bottom: 2.5em;
  position: relative;
}

.detailnav_nav .link-top::before {
  content: '';
  display: block;
  width: 140%;
  height: 1em;
  padding: 2em 0;
  margin: -2em auto 0;
  position: absolute;
  left: -20%;
  right: 0;
  background: #f7f7f7;
  z-index: -1;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}
@media only screen and (max-width: 749px) {
 .detailnav-wrap-top {
   display: none;
 }
}
@media only screen and (min-width: 750px) {
  .detailnav-wrap {
    width: 96%;
  }
  .detailnav-wrap:nth-of-type(1) .detailnav_nav {
  margin: -3.5em 0 83px;
  }
  .detailnav-wrap:nth-of-type(2),
  .detailnav-wrap-bottom {
  margin: 70px auto 25px;
  }
  .detailnav-wrap:nth-of-type(2) .detailnav_nav,
  .detailnav-wrap-bottom .detailnav_nav {
  margin: 0;
  }
  .detailnav_nav .link-top::before {
    left: auto;
    right: -60px;
  }
  .detailnav-wrap:nth-of-type(2) .detailnav_nav .link-top::before,
  .detailnav-wrap-bottom .detailnav_nav .link-top::before {
  padding: 40px 0;
  top: -2.4em;
  }
  .detailnav_nav ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  }
  .detailnav_nav .link-top {
  position: relative;
  margin-right: 1.5em;
  margin-bottom: 0;
  }
  .detailnav_nav .link-top::before {
    width: 382px;
    padding: 45px 0 50px;
    margin: 0 auto;
    top: -4.3em;
    right: -20px;
  }
  .detailnav_nav .current {
  padding-bottom: 0;
  }
  .detailnav_nav li {
  margin-top: 3.5em;
  }
  .detailnav_nav li:nth-child(2)::before {
  visibility: hidden;
  }
  .detailnav_nav li:not(.link-top) {
    padding: 0 10px;
    position: relative;
  }
  .detailnav_nav li:not(.link-top)::before {
    content: '/';
    color: #999;
    position: absolute;
    left: -2px;
    top: 39%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1000px) {
  .detailnav-wrap:nth-of-type(1) .detailnav_nav {
    margin: -4em 0 122px;
  }
  .detailnav-wrap:nth-of-type(1) .detailnav_nav .link-top {
    margin-right: 7.1em;
  }
  .detailnav-wrap:nth-of-type(2) .detailnav_nav .link-top,
  .detailnav-wrap-bottom .detailnav_nav .link-top {
    margin-right: 8.9em;
  }
  .detailnav-wrap:nth-of-type(2) .detailnav_nav li:not(.link-top),
  .detailnav-wrap-bottom .detailnav_nav li:not(.link-top) {
    /* margin-right: 1.5em; */
  }
  .detailnav-wrap:nth-of-type(2) .detailnav_nav li:not(.link-top)::before,
  .detailnav-wrap-bottom .detailnav_nav li:not(.link-top)::before {
    margin-right: 1.5em;
  }
  .detailnav_nav li {
    margin-top: 3.7em;
    line-height: 2.6;
  }
  .detailnav_nav li:hover::after {
    width: 3em;
  }
  .detailnav_nav li:not(.link-top)::before {
    margin-right: 0.6em;
  }
  .detailnav_nav .link-top::before {
    width: 1000px;
    padding: 58px 0 38px;
    top: -3.6em;
    left: auto;
    right: -60px;
  }
  .detailnav_nav a:hover {
    color: #ca0000;
  }
}
/* ------------------------------
- category
------------------------------ */
.category {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.category_item {
  color: #999;
  font-size: 10px;
  border-left: 1px solid #999;
  line-height: 1.2;
  padding: 1px 6px;
  margin: 2px 0;
}
@media only screen and (min-width: 750px) {
  .category_item {
    font-size: 12px;
    padding: 0 20px 0 10px;
    margin: 5px 0;
  }
  .category_item_link:hover {
    color: #ca0000;
    border-left: 1px solid #ca0000;
  }
}



.contact_btn {
  border-radius: inherit;
  padding: 12px 20px;
  width: 70%;
}
@media only screen and (min-width: 750px) {
  .contact_btn {
    border-radius: inherit;
    padding: 12px;
    width: auto;
    min-width: 260px;
  }
  .contact_btn::after {
    top: 21px;
  }
}

