@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

.test {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: Flash1 1s infinite;
  font-family: 'Noto Serif JP', serif;
  background: linear-gradient(90deg, #00486e 0%, #00789b 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

.test {
  content: "\f105";
  font-family: FontAwesome;
}

/**scss共通ここまで***/
body {
  min-width: 1100px;
}

@media (max-width: 680px) {
  body {
    min-width: 100px;
  }
}

header {
  width: 100%;
  min-width: 1100px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

@media (max-width: 680px) {
  header {
    min-width: 100px;
    height: 70px;
  }
}

.header__in {
  width: 100%;
  min-width: 1100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #dfdfdf;
}

@media (max-width: 680px) {
  .header__in {
    min-width: 100px;
    height: 70px;
  }
}

.header__in .h1title {
  width: 180px;
  align-self: center;
}

@media (max-width: 680px) {
  .header__in .h1title {
    width: 130px;
  }
}

.header__in .h1title .inh1 {
  width: 160px;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .header__in .h1title .inh1 {
    width: 110px;
  }
}

.header__in .search {
  position: absolute;
  top: 10px;
  right: 170px;
  line-height: 100%;
  width: 130px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 680px) {
  .header__in .search {
    width: 100px;
    top: 26px;
    right: 80px;
  }
}

.header__in .search .icon {
  width: 20px;
  margin-right: 14px;
  margin-top: -1px;
}

.header__in .search .icon:hover {
  cursor: pointer;
}

.header__in .search .text_jp {
  font-size: 12px;
  text-align: center;
  width: 50px;
  border-right: 1px solid #333;
}

.header__in .search .text_en {
  font-size: 12px;
  text-align: center;
  width: 50px;
}

.header__in .search .active {
  text-decoration: underline;
}

.header__in .search_cotena {
  position: absolute;
  top: 5px;
  right: 320px;
  width: 0px;
  overflow: hidden;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.header__in .search_cotena.active {
  width: 200px;
}

.header__in .search_cotena.pc_only {
  width: 200px;
  right: 276px;
}

.header__in .search_cotena.pc_only #searchBox {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.header__in .search_cotena.pc_only .text-test{
  border: none;
}

.header__in .search_cotena.pc_only .submit-test{
  opacity: 0;
  width: 26px;
}

.header__in .search_cotena.pc_only .searchwrap{
  width: 180px;
}

.header__in .navi {
  width: calc(100% - 340px);
  max-width: 900px;
  min-width: 760px;
  align-self: flex-end;
  display: block;
}

@media (max-width: 680px) {
  .header__in .navi {
    min-width: 100px;
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    overflow-y: scroll;
    height: 100%;
    background-color: #333;
    color: #fff;
    display: none;
  }
}

@media (max-width: 680px) {
  .header__in .navi a, .header__in .navi span {
    color: #fff;
    width: 100%;
  }
}

.header__in .navi ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 680px) {
  .header__in .navi ul {
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
  }
}

@media (max-width: 680px) {
  .header__in .navi ul li {
    width: 100%;
  }
}

.header__in .navi ul li a.d01, .header__in .navi ul li span.d01 {
  display: inline-block;
  padding: 14px 0.5em;
  position: relative;
}

@media (max-width: 680px) {
  .header__in .navi ul li a.d01, .header__in .navi ul li span.d01 {
    padding: 14px 5%;
    border-top: 1px solid #f2f2f2;
  }
}

@media (max-width: 680px) {
  .header__in .navi ul li a.d01.last_line, .header__in .navi ul li span.d01.last_line {
    border-bottom: 1px solid #f2f2f2;
  }
}

.header__in .navi ul li a.d01::before, .header__in .navi ul li span.d01::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #e60000;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  z-index: 99;
}

.header__in .navi ul li a.d01:hover::before, .header__in .navi ul li span.d01:hover::before {
  width: calc(100% - 1em);
}

@media (max-width: 680px) {
  .header__in .navi ul li a.d01:hover::before, .header__in .navi ul li span.d01:hover::before {
    width: 0%;
  }
}

.header__in .navi ul li a.d01.active::before, .header__in .navi ul li span.d01.active::before {
  width: calc(100% - 1em);
}

@media (max-width: 680px) {
  .header__in .navi ul li a.d01.active::before, .header__in .navi ul li span.d01.active::before {
    width: 0%;
  }
}

.header__in .navi ul li a.d01.active2::before, .header__in .navi ul li span.d01.active2::before {
  width: calc(100% - 1em);
}

@media (max-width: 680px) {
  .header__in .navi ul li a.d01.active2::before, .header__in .navi ul li span.d01.active2::before {
    width: 0%;
  }
}

.header__in .navi ul li a.sub::after, .header__in .navi ul li span.sub::after {
  content: "\f107";
  font-family: FontAwesome;
  display: inline-block;
  width: 1em;
  padding-left: 5px;
}

@media (max-width: 680px) {
  .header__in .navi ul li a.sub::after, .header__in .navi ul li span.sub::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/menu_back01.png);
    width: 12px;
    height: 12px;
    background-size: cover;
    top: 50%;
    right: 5vw;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}

@media (max-width: 680px) {
  .header__in .navi ul li a.sub.onon::after, .header__in .navi ul li span.sub.onon::after {
    background-image: url(../images/common/menu_back02.png);
  }
}

.header__in .navi ul li.first {
  margin-left: 25px;
}

@media (max-width: 680px) {
  .header__in .navi ul li.first {
    margin-left: 0px;
  }
}

.header__in .navi ul li.last {
  margin-right: 25px;
}

@media (max-width: 680px) {
  .header__in .navi ul li.last {
    margin-right: 0px;
  }
}

.header__in .navi ul li span:hover {
  cursor: pointer;
}

.header__in .cv_contena {
  width: 160px;
  font-size: 13px;
}

@media (max-width: 680px) {
  .header__in .cv_contena {
    display: none;
  }
}

.header__in .cv_contena a.download {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background-color: #e60000;
  color: #fff;
  line-height: 100%;
  position: relative;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.header__in .cv_contena a.contact {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  line-height: 100%;
  position: relative;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.header__in .cv_contena a.download::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.header__in .cv_contena a.contact::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.header__in .cv_contena a.contact:hover {
  cursor: pointer;
}

/**************sub_nav******************/
.inbox {
  width: 850px;
  height: 350px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0;
  color: #fff;
}

@media (max-width: 1100px) {
  .inbox {
    width: 960px;
    height: 350px;
  }
}

@media (max-width: 680px) {
  .inbox {
    width: 100%;
    height: auto;
    padding: 0px 0;
  }
}

.inbox.heigh_company {
  height: 230px;
}

@media (max-width: 680px) {
  .inbox.heigh_company {
    height: auto;
  }
}

.inbox.heigh_item {
  height: 370px;
}

@media (max-width: 680px) {
  .inbox.heigh_item {
    height: auto;
  }
}

.inbox.heigh_ir {
  height: 350px;
}

@media (max-width: 680px) {
  .inbox.heigh_ir {
    height: auto;
  }
}

.inbox.heigh_csr {
  height: 230px;
}

@media (max-width: 680px) {
  .inbox.heigh_csr {
    height: auto;
  }
}

.inbox.heigh_contact {
  height: 230px;
}

@media (max-width: 680px) {
  .inbox.heigh_contact {
    height: auto;
  }
}

.inbox a {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 680px) {
  .inbox a {
    width: 100%;
  }
}

.inbox .subsub {
  position: relative;
  z-index: 199;
}

@media (max-width: 680px) {
  .inbox .subsub li {
    width: 95% !important;
    margin-left: 5%;
  }
}

.inbox .back_black00 {
  position: absolute;
  width: calc((100vw - 850px) / 2 + 220px);
  height: 100%;
  background-color: #000;
  top: 0;
  left: calc((100vw - 850px) / 2 * -1);
  z-index: 1;
}

@media (max-width: 1100px) {
  .inbox .back_black00 {
    left: -70px;
    width: 290px;
  }
}

@media (max-width: 680px) {
  .inbox .back_black00 {
    display: none;
  }
}

.inbox .back_back {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

@media (max-width: 680px) {
  .inbox .back_back {
    display: none;
  }
}

.inbox .back_black01 {
  background-image: url(../images/common/nav_back01.jpg);
}

.inbox .back_black02 {
  background-image: url(../images/common/nav_back02.jpg);
}

.inbox .back_black03 {
  background-image: url(../images/common/nav_back03.jpg);
}

.inbox .back_black04 {
  background-image: url(../images/common/nav_back04.jpg);
}

.inbox .back_black05 {
  background-image: url(../images/common/nav_back05.jpg);
}

.inbox .back_black06 {
  background-image: url(../images/common/nav_back06.jpg);
}

.inbox .back_black07 {
  background-image: url(../images/common/nav_back07.jpg);
}

.inbox .back_black08 {
  background-image: url(../images/common/nav_back08.jpg);
}

.inbox .back_black09 {
  background-image: url(../images/common/nav_back09.jpg);
}

.inbox .back_active {
  opacity: 1;
}

.inbox .back_red {
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #e60000;
  top: 0;
  left: 220px;
  z-index: 2;
}

@media (max-width: 680px) {
  .inbox .back_red {
    display: none;
  }
}

.sub_company, .sub_item, .sub_ir, .sub_csr, .sub_contact {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 0;
  min-width: 1100px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 98;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  /*background-color: #fff;*/
}

@media (max-width: 680px) {
  .sub_company, .sub_item, .sub_ir, .sub_csr, .sub_contact {
    position: relative;
    top: auto;
    left: 0;
    min-width: 100px;
    display: none;
    height: auto;
    -webkit-transition: all 0s ease-out;
    transition: all 0s ease-out;
  }
}

ul.subsub {
  display: block !important;
}

.subsub_link {
  display: inline-block;
  width: 220px;
  padding: 5px 15px;
  position: relative;
}

@media (max-width: 680px) {
  .subsub_link {
    padding: 12px 10% 12px 5%;
    border-top: 1px solid #f2f2f2;
    background-color: #e60000 !important;
  }
}

@media (max-width: 680px) {
  .subsub_link.under_no_line {
    border-bottom: 0px solid #f2f2f2;
  }
}

.subsub_link__in {
  display: inline-block;
  padding: 5px 15px 5px 0;
  position: relative;
}

@media (max-width: 680px) {
  .subsub_link__in {
    padding: 12px 5%;
    border-top: 1px solid #f2f2f2;
    background-color: #e60000;
  }
}

@media (max-width: 680px) {
  .subsub_link__in.under_no_line {
    border-bottom: 0px solid #f2f2f2;
  }
}

.linkactive {
  background-color: #e60000;
}

@media (max-width: 680px) {
  .linkactive {
    background-color: transparent;
  }
}

.subsub_link::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

@media (max-width: 680px) {
  .subsub_link::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/menu_back01.png);
    width: 12px;
    height: 12px;
    background-size: cover;
    top: 50%;
    right: 5vw;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}

@media (max-width: 680px) {
  .subsub_link.onon::after {
    background-image: url(../images/common/menu_back02.png);
  }
}

.subsub_link_gogo::after {
  content: "" !important;
}

@media (max-width: 680px) {
  .subsub_link_gogo::after {
    content: "";
    background-image: none;
  }
}

.subsub_link_gogo2::after {
  content: "" !important;
}

@media (max-width: 680px) {
  .subsub_link_gogo2::after {
    content: "";
    background-image: none;
  }
}

@media (max-width: 680px) {
  .more_no::after {
    content: "" !important;
    background-image: none !important;
  }
}

.subsub_list_tate {
  display: block !important;
}

.sub_company_list01 {
  position: absolute;
  top: 0;
  left: 250px;
  display: inline-block;
}

@media (max-width: 680px) {
  .sub_company_list01 {
    width: 100%;
    position: relative;
    top: auto;
    left: 0;
  }
}

.sub_item_list01, .sub_item_list02, .sub_item_list03, .sub_item_list04, .sub_item_list05, .sub_item_list06, .sub_item_list07, .sub_item_list08, .sub_item_list09 {
  position: absolute;
  top: 0;
  left: 250px;
  display: inline-block;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 680px) {
  .sub_item_list01, .sub_item_list02, .sub_item_list03, .sub_item_list04, .sub_item_list05, .sub_item_list06, .sub_item_list07, .sub_item_list08, .sub_item_list09 {
    width: 100%;
    position: relative;
    top: auto;
    left: 0;
    display: none;
    -webkit-transition: all 0s ease-out;
    transition: all 0s ease-out;
    opacity: 1;
  }
}

.sub_item_active {
  opacity: 1;
  pointer-events: visible;
}

.sub_ir_list01, .sub_ir_list02, .sub_ir_list03, .sub_ir_list04, .sub_ir_list05, .sub_ir_list06, .sub_ir_list07, .sub_ir_list08 {
  position: absolute;
  top: 0;
  left: 250px;
  display: inline-block;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 680px) {
  .sub_ir_list01, .sub_ir_list02, .sub_ir_list03, .sub_ir_list04, .sub_ir_list05, .sub_ir_list06, .sub_ir_list07, .sub_ir_list08 {
    position: relative;
    top: auto;
    left: 0;
    display: none;
    -webkit-transition: all 0s ease-out;
    transition: all 0s ease-out;
    opacity: 1;
  }
}

.sub_ir_active {
  opacity: 1;
  pointer-events: visible;
}

.sub_csr_list01 {
  position: absolute;
  top: 0;
  left: 250px;
  display: inline-block;
}

@media (max-width: 680px) {
  .sub_csr_list01 {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
  }
}

.sub_contact_list01 {
  position: absolute;
  top: 0;
  left: 250px;
  display: inline-block;
}

/**********************************************************************/
.cv_area_sp {
  width: 100%;
  background-color: #fff;
  padding: 5% 5vw;
}

.cv_area_sp .cvflex_spin {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 3.4vw;
  line-height: 100%;
}

.cv_area_sp .cvflex_spin .cvin_left {
  width: 50%;
  background-color: #000;
  text-align: center;
  border-right: 1px solid #fff;
}

.cv_area_sp .cvflex_spin .cvin_right {
  width: 50%;
  background-color: #e60000;
  text-align: center;
}

.cv_area_sp .cvflex_spin a {
  padding: 18px;
  width: 100%;
  display: inline-block;
  position: relative;
}

.cv_area_sp .cvflex_spin a::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.sp_menu {
  position: absolute;
  width: 60px;
  height: 50px;
  top: 10px;
  right: 10px;
}

.sp_menu:hover {
  cursor: pointer;
}

.sp_menu .nline01 {
  width: 44px;
  height: 2px;
  position: absolute;
  top: 12px;
  left: 8px;
  background-color: #e60000;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.sp_menu .nline02 {
  width: 44px;
  height: 2px;
  position: absolute;
  top: 24px;
  left: 8px;
  background-color: #e60000;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.sp_menu .nline02b {
  width: 44px;
  height: 2px;
  position: absolute;
  top: 24px;
  left: 8px;
  background-color: #e60000;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.sp_menu .nline03 {
  width: 44px;
  height: 2px;
  position: absolute;
  bottom: 12px;
  left: 8px;
  background-color: #e60000;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.sp_menu.active .nline01 {
  opacity: 0;
}

.sp_menu.active .nline02 {
  transform: rotate(30deg);
}

.sp_menu.active .nline02b {
  transform: rotate(-30deg);
}

.sp_menu.active .nline03 {
  opacity: 0;
}

.cv_search {
  margin-top: 25px;
  padding-bottom: 450px;
}

/*****************formフォームカスタム********************/
/*********テキスト*************/
.text-test {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  padding: 0 5px;
  height: 26px;
  width: 100%;
  color: #000;
}

@media (max-width: 680px) {
  .text-test {
    font-size: 16px;
    height: 40px;
  }
}

.text-test:focus {
  border: 1px solid #00789b;
  box-shadow: none;
  outline: none;
}

/*********テキストエリア*************/
.textarea-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 8px;
  width: 100%;
  height: 150px;
  border-radius: 5px;
}

.textarea-text:focus {
  border: 1px solid #00789b;
  box-shadow: none;
  outline: none;
}

/*********ラジオボタン*************/
.radio-test {
  display: none;
}

.radio-test + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 1em 0 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

.radio-test + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%);
  width: 16px;
}

.radio-test + span::after {
  -webkit-transform: translateY(-50%);
  background: #00789b;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 8px;
}

.radio-test:checked + span::after {
  opacity: 1;
}

/*********チェックボックス*************/
.check-test {
  display: none;
}

.check-test + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 1em 0 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

.check-test + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.1em;
  left: 0;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%);
  width: 1.1em;
}

.check-test + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #00789b;
  border-left: 3px solid #00789b;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.check-test:checked + span::after {
  opacity: 1;
}

/*********セレクトボックス（ドロップダウンメニュー）***********/
.select_after {
  position: relative;
}

.select_after::after {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: 1em;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.select-test {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: inherit;
  /***FontAwesomeを使わない場合は背景画像など
  background: transparent url(https://haniwaman.com/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 8px/16px 16px;
  */
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 8px 8px;
  width: 100%;
  position: relative;
}

.select-test::-ms-expand {
  display: none;
}

.select-test:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

/*********送信ボタンなど***********/
.submit-test {
  -webkit-appearance: none;
  background-color: black;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 100%;
  margin: 0 0 0em;
  width: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  height: 26px;
  font-family: 'Noto Sans Japanese';
  position: relative;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 680px) {
  .submit-test {
    height: 40px;
  }
}

.submit-test:hover,
.submit-test:focus {
  outline: none;
}

.submit-test::-moz-foucus-inner {
  border: none;
  padding: 0;
}

#searchArea {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 680px) {
  #searchArea {
    width: 80%;
  }
}

#searchBox {
  position: relative;
}

#searchwrap {
  width: calc(100% - 50px);
}

.fll {
  display: inline-block;
  vertical-align: top;
}

/**************************************************************************/
footer {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: #000;
  color: #fff;
  position: relative;
}

@media (max-width: 680px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

footer .footer__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

footer ul.footcontan {
  width: 22%;
}

footer ul.footcontan.minw01 {
  width: 18%;
}

footer ul.footcontan.minw02 {
  width: 30%;
}

footer ul.footcontan.minw03 {
  width: 16%;
}

footer ul.footcontan.minw04 {
  width: 22%;
}

footer ul.footcontan_last {
  width: 16%;
  margin-left: 5%;
}

footer .link_a {
  padding: 5px 0;
  margin-bottom: 16px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  letter-spacing: 0.1em;
}

footer .link_a:hover {
  opacity: 0.5;
}

footer .link_a.btup {
  margin-top: 15px;
}

footer .link_a2 {
  padding: 5px 0;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  letter-spacing: 0.1em;
}

footer .link_a2:hover {
  opacity: 0.5;
}

footer .link_b {
  padding: 3px 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  letter-spacing: 0.1em;
}

footer .link_b:hover {
  opacity: 0.5;
}

footer .nolink_opa {
  opacity: 1 !important;
}

footer .footer__in2 {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  footer .footer__in2 {
    margin: 0px auto 0 auto;
  }
}

footer .footer__in2 .footlogo {
  width: 23.45%;
}

@media (max-width: 680px) {
  footer .footer__in2 .footlogo {
    width: 60%;
    margin: 0px auto;
  }
}

footer .footer__in2 ul {
  width: 40%;
  font-size: 12px;
}

@media (max-width: 680px) {
  footer .footer__in2 ul {
    width: 100%;
    margin: 20px auto 0 auto;
    text-align: center;
  }
}

footer .footer__in2 ul li {
  display: inline-block;
  margin-right: 6%;
}

footer .footer__in2 ul li a {
  color: #fff !important;
}

footer .footer__in2 ul li.last.sns {
  margin-right: 0;
  width: 40px;
  position: relative;
  top: 8px;
  left: 0;
}

@media (max-width: 680px) {
  footer .footer__in2 ul li.last {
    margin-right: 0%;
  }
  footer .footer__in2 ul li.last.sns {
    margin-right: 0%;
    width: 100%;
    margin-top: 16px;
  }
  footer .footer__in2 ul li.last.sns img{
    max-width: 36px;
  }
}

footer .footer__in2 .copyright_text {
  font-size: 12px;
  font-family: 'Noto Serif JP', serif;
}

@media (max-width: 680px) {
  footer .footer__in2 .copyright_text {
    text-align: center;
    width: 100%;
    line-height: 140%;
    margin-top: 20px;
  }
}

footer .topback {
  position: absolute;
  width: 57px;
  right: 30px;
  top: -30px;
  line-height: 0;
  background-color: #000;
}

@media (max-width: 680px) {
  footer .topback {
    width: 35px;
    right: 10px;
    top: -18px;
  }
}

/**************************************************************************/
/**PC用新ナビゲーションCSS*******/
.new_sub_in {
  width: 1000px;
  margin: 0 auto;
}

.new_sub_in h3.type01 {
  font-size: 20px;
  padding-bottom: 8px;
  font-weight: bold;
  width: 100%;
  border-bottom: 1px solid #000;
  line-height: 100%;
}

.new_sub_in h3.type01 a {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.new_sub_in h3.type01 a:hover {
  color: #e60000;
}

.new_sub_in h3.type01 i {
  font-size: 22px;
  padding-left: 10px;
}

.new_sub_in ul.type01 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: flex-start;
}

.new_sub_in ul.type01 li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
  line-height: 100%;
}

.new_sub_in ul.type01 li a, .new_sub_in ul.type01 li span {
  display: inline-block;
  margin-right: 50px;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.new_sub_in ul.type01 li a.lastleft, .new_sub_in ul.type01 li span.lastleft {
  margin-right: 0;
}

.new_sub_in ul.type01 li a:hover, .new_sub_in ul.type01 li span:hover {
  color: #e60000;
}

.new_sub_in ul.type01 li i {
  font-size: 18px;
  padding-left: 10px;
}

.new_sub_in ul.type02 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.new_sub_in ul.type02 li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
  line-height: 100%;
}

.new_sub_in ul.type02 li a, .new_sub_in ul.type02 li span {
  display: inline-block;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.new_sub_in ul.type02 li a .imgin, .new_sub_in ul.type02 li span .imgin {
  margin-bottom: 5px;
  position: relative;
}

.new_sub_in ul.type02 li a .imgin .imgin__in, .new_sub_in ul.type02 li span .imgin .imgin__in {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  background-color: rgba(255, 0, 0, 0.5);
  position: absolute;
  opacity: 0;
}

.new_sub_in ul.type02 li span.active .imgin .imgin__in {
  opacity: 1;
}

.new_sub_in ul.type02 li a:hover, .new_sub_in ul.type02 li span:hover {
  color: #e60000;
}

.new_sub_in ul.type02 li a:hover .imgin .imgin__in, .new_sub_in ul.type02 li span:hover .imgin .imgin__in {
  opacity: 1;
}

.new_sub_in ul.type02 li i {
  font-size: 18px;
  padding-left: 10px;
}

/*******************************/
.new_company {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-width: 1100px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 98;
  background-color: #f2f2f2;
  display: none;
  padding: 20px 0 30px 0;
}

.new_item {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-width: 1100px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 98;
  background-color: #f2f2f2;
  display: none;
  padding: 20px 0 0px 0;
}

.new_item .new_item_list {
  padding-bottom: 30px;
}

.new_item .new_item_list li:nth-child(1n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(2n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(3n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(4n) {
  /*width: 38.4%;*/
	width:17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(4n) .imgin {
  width: 170px;
}

.new_item .new_item_list li:nth-child(5n) {
  width: 17%;
  margin-right: 0%;
}

.new_item .new_item_list li:nth-child(6n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(7n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(8n) {
  width: 17%;
  margin-right: 3.5%;
}

.new_item .new_item_list li:nth-child(9n) {
  width: 17%;
  margin-right: 3.5%;
}
.new_item .new_item_list li:nth-child(10n) {
  width: 17%;
  margin-right: 0%;
}
.new_item .new_item_in01 span.active, .new_item .new_item_in02 span.active, .new_item .new_item_in03 span.active, .new_item .new_item_in04 span.active, .new_item .new_item_in05 span.active, .new_item .new_item_in06 span.active, .new_item .new_item_in07 span.active {
  color: #f00;
}

.new_ir {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-width: 1100px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 98;
  background-color: #f2f2f2;
  display: none;
  padding: 20px 0 0px 0;
}

.new_ir .new_ir_list {
  padding-bottom: 30px;
}

.new_ir .new_ir_in01 span.active, .new_ir .new_ir_in02 span.active, .new_ir .new_ir_in03 span.active, .new_ir .new_ir_in04 span.active {
  color: #f00;
}

.new_csr {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-width: 1100px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 98;
  background-color: #f2f2f2;
  display: none;
  padding: 20px 0 30px 0;
}

/*******************/
.new_in_contena {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-width: 1100px;
  position: relative;
  overflow: hidden;
  z-index: 98;
  background-color: #e60000;
  display: none;
  color: #fff;
  padding-top: 22px;
}

.new_in_contena a {
  color: #fff;
}

.new_in_contena .new_in_contena__in {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.new_in_contena .new_in_contena__in h4 {
  width: 240px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}

.new_in_contena .new_in_contena__in h4 a, .new_in_contena .new_in_contena__in h4 span {
  display: inline-block;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.new_in_contena .new_in_contena__in h4 a.lastleft, .new_in_contena .new_in_contena__in h4 span.lastleft {
  margin-right: 0;
}

.new_in_contena .new_in_contena__in h4 a:hover, .new_in_contena .new_in_contena__in h4 span:hover {
  opacity: 0.7;
}

.new_in_contena .new_in_contena__in h4 i {
  font-size: 18px;
  padding-left: 10px;
}

.new_in_contena .new_in_contena__in .text {
  width: 730px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.new_in_contena .new_in_contena__in .text li {
  margin-bottom: 14px;
}

.new_in_contena .new_in_contena__in .text a, .new_in_contena .new_in_contena__in .text span {
  display: inline-block;
  margin-right: 50px;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.new_in_contena .new_in_contena__in .text a.lastleft, .new_in_contena .new_in_contena__in .text span.lastleft {
  margin-right: 0;
}

.new_in_contena .new_in_contena__in .text a:hover, .new_in_contena .new_in_contena__in .text span:hover {
  opacity: 0.7;
}

.new_in_contena .new_in_contena__in .text i {
  font-size: 18px;
  padding-left: 10px;
}
