@charset "utf-8";

/*
header,footer
  mobile: -1023px
  PC: 1024px-
main
  mobile: -480px
  tablet: 481px - 1023px
  PC: 1024px-
*/

@import url('config.css');

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* Anime */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/* ALL */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 100%;
  background: var(--ff);
  text-underline-position: under;
}
.lock {
  overflow:hidden;
}
#load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 1000;
}
#load img {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1001;
}
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#onecolumn,
.content {
  position: relative;
  width: min(96%, 1200px);
  margin: 0 auto;
}
sub {
  font-size: .8rem;
  vertical-align: sub;
}
sup {
  font-size: .8rem;
  vertical-align: super;
}
/* display */
#company_menu,
#service_menu,
#recruit_menu {
  display: none;
}
.tab_box.active {
  display: block;
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  background: var(--ff);
  border-bottom: 1px solid var(--line);
}
/* footer */
footer {
  position: relative;
  bottom: 0;
  margin-top: auto;
  z-index: 999;
}
/* topback */
#topback {
  position: fixed;
  right: 2%;
  bottom: 2%;
  width: 60px;
  height: 60px;
  background: rgba(52,73,94,.8);
  border: 1px solid var(--line);
  z-index: 9999;
  cursor: pointer;
}
#topback::after {
  position: absolute;
  content: '';
  top: 23px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--ff);
  border-right: 3px solid var(--ff);
  transform: rotate(-45deg);
}
/* icon */
.i_plus,
.i_minus {
  position: relative;
  width: 25px;
  height: 25px;
  z-index: 10;
}
.i_plus::before,
.i_plus::after {
  position: absolute;
  top: 11px;
  left: 50%;
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--co_mc);
  transform: translateX(-50%);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
.i_plus::after {
  top: 4px;
  left: -2px;
  transform: rotate(90deg);
}
/* breadcrumb */
#breadcrumb {
  position: relative;
  width: min(96%, 1200px);
  margin: 0 auto;
  padding: 1em 0;
  z-index: 5;
}
#breadcrumb ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#breadcrumb ul li {
  padding: .5em;
  line-height: 1.4;
  color: var(--tc);
  font-size: .8rem;
  font-weight: var(--t4);
}
#breadcrumb ul li:first-child {
  padding: .5em .5em .5em 0;
}
#breadcrumb ul li a {
  color: var(--tc);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
#breadcrumb.pagehead_breadcrumb,
#breadcrumb.pagehead_breadcrumb02 {
  padding: .3em 0;
  transform: translateY(-350px);
}
#breadcrumb.pagehead_breadcrumb02 {
  transform: translateY(-250px);
}
#breadcrumb.pagehead_breadcrumb li,
#breadcrumb.pagehead_breadcrumb li a {
  color: var(--ff);
}
/*pagenavi*/
ul.pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(96%, 730px);
  margin: 5% auto;
}
ul.pagenavi li a,
ul.pagenavi .current {
  display: block;
  background: var(--ff);
  width: auto;
  height: 45px;
  margin: 0 3px;
  padding: 15px 10px;
  color: var(--tc);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--line);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
ul.pagenavi a:hover,
ul.pagenavi .current {
  color: var(--ff);
  background: var(--co_mc);
  border: 1px solid var(--co_mc);
}
/* youtube */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* icon */
.icon_link::before {
  display: inline-block;
  content: url(../images/common/icon_link.svg);
  width: 13px;
  height: 13px;
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
.icon_link_w::before {
  display: inline-block;
  content: url(../images/common/icon_link_w.svg);
  width: 16px;
  height: 16px;
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
.icon_pdf::before {
  display: inline-block;
  content: url(../images/common/icon_pdf.svg);
  width: 17px;
  height: 20px;
  vertical-align: text-top;
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
/* searchform */
#searcherea {
  width: 100%;
  padding: 25px;
  background: var(--bg);
}
ul#search_txt,
ul#search_check {
  display: flex;
  align-items: center;
  width: 100%;
}
ul#search_txt {
  justify-content: space-between;
  margin: .4em 0;
}
ul#search_txt li:first-child {
  width: calc(98% - 280px);
}
ul#search_txt li input[type="search"] {
  width: 100%;
  height: 40px;
  padding: 3px 10px;
  color: var(--tc);
  font-size: 1rem;
  font-weight: var(--t4);
  background: var(--ff);
  border: 1px solid var(--line);
  border-radius: 4px;
}
ul#search_txt li input[type="submit"] {
  width: 280px;
  height: 40px;
  color: var(--ff);
  font-size: 1rem;
  background: var(--co_mc);
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
input[type="search"]:focus {
  outline: none;
  border-width: 1px;
  border-style: solid;
  -webkit-box-shadow: 0 0 8px rgba(52,152,219,.3);
  box-shadow: 0 0 8px rgba(52,152,219,.3);
  border-color: rgba(52,152,219,.3) !important;
}
ul#search_check li:first-child,
ul#search_check li label {
  color: var(--tc);
  font-size: 1rem;
  font-weight: var(--t4);
}
ul#search_check li:not(:first-child) {
  padding-left: 1em;
}
/* contact */
#asform {
  margin: 5% 0;
}
input[type="text"],
textarea {
  width: 100%;
  margin: 3px 0;
  padding: 10px;
  color: var(--tc);
  font-size: 1rem;
  font-weight: var(--t4);
  border-radius: 4px;
  border: 1px solid var(--line);
}
select {
  width: 100%;
  margin: 3px 0;
  padding: 10px;
  border-radius: 2px;
  color: var(--tc);
  font-size: .9rem;
  font-weight: var(--t4);
}
input[type="checkbox"] {
  margin: 0 .5em 0 0;
  -webkit-transform: scale(1.2,1.2);
  transform-origin: left bottom;
  transform: scale(1.2,1.2);
}
input[type="radio"] {
  margin: -0.3em .5em 0;
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-width: 1px;
  border-style: solid;
  -webkit-box-shadow: 0 0 8px rgba(52,152,219,.5);
  box-shadow: 0 0 8px rgba(52,152,219,.5);
  border-color: rgba(52,152,219,.5) !important;
}
.required,
.any {
  margin: 0 1em 0 0;
  padding: .1em 1.2em;
  color: var(--ff);
  font-size: .8rem;
  font-weight: var(--t4);
  background: var(--red);
}
.any {
  color: var(--tc);
  background: var(--line);
}
#errormessages {
  display: none;
  width: 100%;
  margin: .5em 0;
  padding: .5em;
  background: #f9e5e5;
  border: 1px solid var(--red);
}
#errormessages p {
  padding: 0;
  color: var(--red);
  font-size: 1rem;
  font-weight: var(--t5);
  text-align: center;
}
label.error {
  display: block;
  width: 100%;
  margin: .5em 0;
  padding: .5em;
  color: var(--red);
  font-size: 1rem;
  font-weight: var(--t5);
  background: #f9e5e5;
}
input[type="text"].error,
textarea.error {
  border: 1px solid var(--red);
}
::placeholder {
  color: #d6d6d6;
}
::-webkit-input-placeholder {
  color: #d6d6d6;
}
:-ms-input-placeholder {
  color: #d6d6d6;
}
input[name="zip00_s"],
input[name="zip01_s"] {
  width: 30%;
}
input[name="catlg"] {
  display: none !important;
}
ul#btnbloc {
  margin: 5% auto;
}
#submit_btn,
#back_btn {
  display: block;
  position: relative;
  width: 90%;
  height: 60px;
  margin: 1% auto;
  line-height: 60px;
  color: var(--ff);
  font-size: 1.15rem;
  font-weight: var(--t5);
  text-align: center;
  background: var(--co_mc);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
  cursor: pointer;
}
#back_btn {
  color: var(--co_mc);
  background: var(--ff);
  border: 1px solid var(--co_mc);
}
/* modal */
.screen {
  position: fixed;
  top :0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.6);
  z-index: 9999;
}
.modal_box {
  display: none;
  position: fixed;
  width: 85%;
  max-width: 1000px;
  margin: 0;
  padding: 20px 15px;
  background: var(--ff);
  box-sizing: border-box;
  z-index: 10000;
  max-height: calc(100vh - 100px);
}
.modal_open {
  cursor: pointer;
}
.modal_close {
  display: block;
  position: absolute;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  background: var(--co_mc);
  outline: 5px solid var(--ff);
  cursor: pointer;
}
.modal_close span {
  display: block;
  width: 35px;
  height: 35px;
  margin: 8px 0 0 8px;
  background: url(../images/common/icon_close.svg) no-repeat;
}
.modal_box img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 3%;
  border: 1px solid var(--line);
}
.modal_box h1 {
  width: min(100%, 960px);
  margin: 1em auto;
  padding: .2em .5em;
  color: var(--tc);
  font-size: 1.6rem;
  font-weight: var(--t7);
  border-bottom: 1px solid var(--line);
}
.modal_inside {
  width: 100%;
  height: 70vh;
  margin: 0 auto;
  overflow-y: scroll;
}
.modal_inner {
  width: min(100%, 900px);
  margin: 0 auto;
}
/* contact_bloc */
.contact_bloc {
  width: 100%;
  padding: 3% 0;
  background: var(--co_mc);
}
.contact_bloc_inside {
  width: min(96%, 820px);
  margin: 0 auto;
}
.contact_bloc_inside h2 {
  display: block;
  padding: 0 0 .5em;
  color: var(--ff);
  font-size: 1.8rem;
  font-weight: var(--t4);
  text-align: center;
  border-bottom: 1px solid var(--ff);
}
ul.contact_bloc_txt {
  width: 96%;
  margin: 1.5em auto;
}
ul.contact_bloc_txt li:first-child {
  color: var(--ff);
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: var(--t4);
}
ul.contact_bloc_txt li:first-child span {
  display: block;
  font-size: .9rem;
}
ul.contact_bloc_txt li:last-child a {
  display: block;
  width: 100%;
}
ul.contact_bloc_btn {
  width: min(85%, 700px);
  margin: 2em auto 0;
}
ul.contact_bloc_btn li {
  width: 100%;
  height: 60px;
  background: var(--ff);
  box-shadow: rgba(0,0,0,0.2) 0px 3px 8px;
}
ul.contact_bloc_btn li:nth-child(2) {
  margin: 1.2em 0 0;
}
a.btn_contact {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: var(--ff);
  font-size: 1.15rem;
  font-weight: var(--t4);
  text-align: center;
  background: var(--co_or);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
a.btn_emizu {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 1.3;
  background: var(--ff);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
a.btn_emizu span {
  display: block;
  padding: 8px 0 0;
  color: var(--co_mc);
  font-size: 1rem;
  font-weight: var(--t4);
  text-align: center;
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
a.btn_contact::before,
a.btn_emizu::before {
  position: absolute;
  content: '';
  top: 24px;
  left: 1em;
  background: var(--ff);
  width: 7px;
  height: 12px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
a.btn_emizu::before {
  background: var(--co_mc);
  -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
  transition: all .3s cubic-bezier(.56,.07,.45,1);
}
/* google map */
.google_map + p {
  padding: 1.5em 0 !important;
}
@media all and (max-width: 480px) {
  /* Display */
  .pc02 {
    display: none !important;
  }
  /* topback */
  #topback {
    width: 45px;
    height: 45px;
  }
  #topback::after {
    top: 18px;
    right: 15px;
    width: 15px;
    height: 15px;
  }
  /* breadcrumb */
  #breadcrumb ul li {
    padding: .3em;
    font-size: .6rem;
  }
  #breadcrumb ul li:first-child {
    padding: .3em .3em .3em 0;
  }
  #breadcrumb.pagehead_breadcrumb {
    transform: translateY(-150px);
  }
  /* searchform */
  #searcherea {
    padding: 20px 10px;
  }
  ul#search_check li:nth-child(2) {
    padding-left: 0;
  }
  /* modal */
  .modal_close {
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    outline: 2px solid var(--ff);
  }
  .modal_close span {
    display: block;
    width: 22px;
    height: 22px;
    margin: 4px 0 0 4px;
  }
  .modal_box h1 {
    margin: 0 auto 1em;
    padding: .2em;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .modal_inside {
    width: 100%;
    height: 50vh;
    overflow-y: scroll;
  }
  /* contact_bloc */
  a.btn_contact {
    font-size: 1rem;
  }
}
@media all and (min-width: 481px) {
  /* Display */
  .mob02 {
    display: none !important;
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
  }
}
@media all and (max-width: 767px) {
  /* Display */
  .pc03,
  ul#search_check li:first-child {
    display: none !important;
  }
  /* contact */
  ul#btnbloc li {
    margin: 1em 0;
  }
  /* contact_bloc */
  .contact_bloc_inside {
    width: calc(100% - 20px);
  }
  ul.contact_bloc_txt li:last-child a {
    width: min(85%, 450px);
    margin: 1.5em auto;
  }
}
@media all and (min-width: 768px) {
  /* Display */
  .mob03 {
    display: none !important;
  }
  /* contact */
  ul#btnbloc {
    display: flex;
    justify-content: center;
  }
  #error ul li,
  ul#btnbloc li {
    flex-basis: 50%;
  }
  li.confirm > #submit_btn {
    margin: 0 0 0 auto;
  }
  #back_btn {
    margin: 0;
  }
  /* contact_bloc */
  ul.contact_bloc_txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  ul.contact_bloc_txt li:first-child {
    flex-basis: 43%;
  }
  ul.contact_bloc_txt li:last-child {
    flex-basis: 56%;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  /* modal */
  .modal_box h1 {
    margin: 0 auto 1em;
    padding: .2em;
    font-size: 1.4rem;
  }
}
@media all and (max-width: 1023px) {
  /* Display */
  #pcnavi,
  #pcsubnav,
  #footcontent,
  .pc {
    display: none !important;
  }
  #breadcrumb,
  #onecolumn,
  .content {
    width: calc(100% - 20px);
  }
  main {
    padding: 80px 0 0;
    width: 100%;
  }
  /* header */
  header {
    height: 80px;
    z-index: 999;
  }
  ul#mobhead {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
  }
  ul#mobhead li:first-child {
    flex-basis: 80%;
    height: 80px;
  }
  ul#mobhead li:first-child a {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    margin: 22px 0 0 5px;
    background: url(../images/common/logo.svg) no-repeat;
  }
  ul#mobhead li:last-child {
    height: 80px;
  }
  #mobnav_toggle {
    position: relative;
    padding: 30px 15px 0;
    cursor: pointer;
  }
  #mobnav_btn {
    position: relative;
    width: 30px;
    height: 30px;
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  #mobnav_btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--co_mc);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  #mobnav_btn span:nth-child(1) {
    top: 0px;
  }
  #mobnav_btn span:nth-child(2),
  #mobnav_btn span:nth-child(3) {
    top: 10px;
  }
  #mobnav_btn span:nth-child(4) {
    top: 20px;
  }
  #mobnav_toggle.active #mobnav_btn span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #mobnav_toggle.active #mobnav_btn span:nth-child(2) {
    transform: rotate(45deg);
  }
  #mobnav_toggle.active #mobnav_btn span:nth-child(3) {
    transform: rotate(-45deg);
  }
  #mobnav_toggle.active #mobnav_btn span:nth-child(4) {
    top: 22px;
    width: 0%;
    left: 50%;
  }
  #mobmenu {
    display: none;
    position: fixed;
    z-index: 10002;
    width: 100%;
    height: 100vh;
    background-color: rgba(27,20,20,.6);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #mobmenu ul li {
    position: relative;
    line-height: 40px;
    border-bottom: 1px solid var(--line);
  }
  #mobmenu ul li.menu_first,
  #mobmenu ul li.menu_single,
  #mobmenu ul.menu_second li,
  #mobmenu ul li.mobactive {
    position: relative;
    text-indent: 1.2rem;
    cursor: pointer;
    background: var(--co_gy);
  }
  #mobmenu ul.menu_second li {
    background: var(--ff);
  }
  #mobmenu ul li.menu_single a,
  span.menu_second_label,
  #mobmenu ul.menu_second li a {
    display: block;
    color: var(--co_mc);
    font-size: 1rem;
    font-weight: var(--t7);
  }
  #mobmenu ul.menu_second {
    border-top: 1px solid var(--line);
    background: var(--ff);
  }
  #mobmenu ul.menu_second li a {
    font-weight: var(--t4);
    text-indent: 1.2rem;
  }
  ul.menu_second li:last-child {
    border-bottom: none !important;
  }
  #mobmenu ul li.menu_first button {
    position: absolute;
    top: 10px;
    right: 17px;
    cursor: pointer;
  }
  #mobmenu ul li.menu_first button.i_plus.mobactive::after {
    opacity: 0;
  }
  #mobmenu ul li.mobnavbloc {
    display: flex;
    justify-content: space-between;
    margin: 0 0 180px;
    padding: 20px 10px;
    background: var(--co_gy);
  }
  #mobmenu ul li.mobnavbloc div {
    flex-basis: 48%;
    background: var(--ff);
  }
  #mobmenu ul li.mobnavbloc div a {
    display: block;
    height: 70px;
    color: var(--co_mc);
    font-size: .95rem;
    font-weight: var(--t7);
    text-align: center;
    line-height: 70px;
  }
  .movmail::before,
  .movsitemap::before {
    display: inline-block;
    width: 26px;
    content: url(../images/common/icon_mail.svg);
    transform: translate(-8px, 7px);
  }
  .movsitemap::before {
    width: 28px;
    content: url(../images/common/icon_sitemap.svg);
  }
  /* footer */
  footer {
    background: var(--ff);
    border-top: 1px solid var(--line);
  }
  #copyright p {
    padding: 1em;
    color: var(--tc);
    font-size: .7rem;
    font-weight: var(--t5);
    text-align: center;
  }
  /* searchform */
  ul#search_txt li:first-child {
    width: calc(98% - 80px);
  }
  ul#search_txt li input[type="submit"] {
    width: 80px;
  }
  /* contact_bloc */
  .contact_bloc {
    padding: 2.5em 0;
  }
  .contact_bloc_inside h2 {
    font-size: 1.4rem;
  }
  ul.contact_bloc_txt li:first-child {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media all and (min-width: 1024px) {
  /* Display */
  #movnavi,
  .mob {
    display: none !important;
  }
  main {
    padding: 100px 0 0;
    width: 100%;
  }
  /* header */
  #pcnavi {
    position: relative;
  }
  nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  nav ul li.logo {
    margin-right: auto;
    margin-left: 10px;
    width: 300px;
  }
  nav ul li#contact {
    width: 120px;
    height: 100px;
    background: var(--co_mc);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  nav ul li:not(.logo):not(#contact) {
    padding: 0 .8em;
  }
  nav ul li#contact a {
    display: block;
    width: 100%;
    height: 100px;
    color: var(--ff);
    font-size: .95rem;
    font-weight: var(--t7);
    line-height: 100px;
    text-align: center;
    white-space: nowrap;
  }
  nav ul li:not(.logo):not(#contact) a {
    padding: 0 0 6px;
    color: var(--tc);
    font-size: .95rem;
    font-weight: var(--t7);
    line-height: 100px;
    white-space: nowrap;
  }
  nav ul li.current a {
    border-bottom: 2px solid var(--co_bl);
  }
  #screen {
    display: none;
    position: absolute;
    top: 100px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.6);
  }
  .navback {
    position: absolute;
    top: 100px;
    width: 100%;
    background: var(--ff);
    box-shadow: 0px 3px 15px -3px rgba(0,0,0,.16) inset;
    z-index: 105;
  }
  .navmenubloc {
    display: flex;
    position: relative;
    width: min(98%, 1200px);
    margin: 1em auto;
    justify-content: space-between;
  }
  .l2menu {
    flex-basis: 20%;
    max-width: 250px;
    padding: 60px 0 0 20px;
  }
  #recruit_menu > .navmenubloc > .l2menu {
    padding: 10px 0 0 20px;
  }
  .l2menu p,
  .l2menu h2 {
    font-family: 'Noto Serif JP', serif;
    color: var(--tc);
  }
  .l2menu p {
    font-size: 1rem;
    font-weight: var(--t4);
  }
  .l2menu h2 {
    font-size: 2.8rem;
    font-weight: var(--t5);
    line-height: 72px;
  }
  .l2menu a.btn {
    display: block;
    position: relative;
    width: min(100%, 230px);
    height: 60px;
    margin: 36px 0 0;
    line-height: 60px;
    color: var(--ff);
    font-size: 1rem;
    font-weight: var(--t4);
    text-align: center;
    background: var(--co_mc);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  .l2menu a.btn::before {
    position: absolute;
    content: '';
    top: 24px;
    left: 15px;
    background: var(--ff);
    width: 7px;
    height: 12px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .l3menu {
    flex-basis: 80%;
    padding-left: 70px;
  }
  .l3menu ul {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 0;
  }
  .l3menu ul.second {
    margin: 10px 0 0;
  }
  .l3menu ul::after {
    content: '';
    display: block;
    flex-basis: 30%;
    max-width: 254px;
  }
  .l3menu ul li {
    flex-basis: 30%;
    max-width: 254px;
    margin: 0 1em 1em 0;
  }
  .l3menu ul li a figure img {
    opacity: 1;
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  .l3menu ul li a figure figcaption,
  .l3menu ul.second li a span {
    position: relative;
    display: block;
    color: var(--tc);
    font-size: 1rem;
    font-weight: var(--t7);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  .l3menu ul li a figure figcaption {
    text-indent: 1rem;
    line-height: 1.8;
  }
  .l3menu ul.second li a span {
    display: inline-block;
    padding-left: 1rem;
    line-height: 1.4;
  }
  .l3menu ul li a figure figcaption::before,
  .l3menu ul.second li a span::before {
    position: absolute;
    content: '';
    top: 8px;
    left: 0;
    background: var(--co_bl);
    width: 7px;
    height: 12px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .l3menu ul.second li a span::before {
    top: 5px;
  }
  .l3menu h3 {
    display: block;
    padding: 0 0 10px;
    color: var(--tc);
    font-size: 1.25rem;
    font-weight: var(--t5);
    border-bottom: 1px solid var(--line);
  }
  /* ADD navmenubloc_bnr_erea 2024-10-05 */
  .navmenubloc_bnr_erea {
    margin: 10px 0 36px;
  }
  .navmenubloc_bnr_erea a img {
    display: block;
    max-width: 100%;
    aspect-ratio: 413 / 65;
    opacity: 1;
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  /* footer */
  footer {
    background: var(--co_gy);
  }
  #footcontent {
    display: flex;
    position: relative;
    width: min(96%, 1200px);
    margin: 60px auto;
    justify-content: space-between;
  }
  #company_info {
    width: 300px;
  }
  #company_info ul {
    width: 100%;
    margin: 1em 0;
    border-top: 1px solid var(--line);
  }
  #company_info ul li:not(:last-child){
    color: var(--tc);
    font-size: .9rem;
    font-weight: var(--t4);
    line-height: 1.5;
  }
  #company_info ul li:first-child {
    padding: 1em 0 0;
    font-size: 1rem;
    font-weight: var(--t7);
  }
  #company_info ul li:last-child {
    width: 130px;
    margin: 1em 0 0;
  }
  #company_info ul li:last-child a {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: var(--ff);
    font-size: .9rem;
    font-weight: var(--t7);
    text-align: center;
    background: var(--co_mc);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  #company_info ul li:last-child a::after {
    position: absolute;
    top: 0;
    right: 8px;
    content: url(../images/common/icon_link_w.svg);
    width: 12px;
    height: 12px;
  }
  #footnav {
    display: flex;
    justify-content: space-between;
  }
  #footnav ul {
    flex-basis: 24%;
  }
  #footnav ul li a {
    position: relative;
    color: var(--tc);
    font-size: .9rem;
    font-weight: var(--t7);
    line-height: 2.0;
    margin: .3em 0 0;
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  #footnav ul li.second a {
    font-size: .85rem;
    font-weight:  var(--t4);
  }
  #footnav ul li.external_link a span.icon_link {
    padding-left: .6em;
  }
  #copyright {
    width: 100%;
    background: var(--co_mc);
    padding: .8em 0;
  }
  #copyright p {
    color: var(--ff);
    font-size: .85rem;
    font-weight: var(--t5);
    text-align: center;
  }
  /* contact */
  ul.checklist_01,
  ul.checklist_02 {
    display: flex;
  }
  ul.checklist_01 {
    flex-wrap: wrap;
  }
  ul.checklist_02 {
    justify-content: space-between;
    align-items: center;
  }
  ul.checklist_01 li {
    flex-basis: calc(100% / 3);
  }
  ul.checklist_01 li.list_mt {
    margin: .5em 0 0;
  }
  ul.checklist_02 li:first-child {
    flex-basis: 200px;
  }
  ul.checklist_02 li:last-child {
    flex-basis: calc(100% - 200px);
  }
}
@media all and (min-width: 1024px) and (max-width: 1365px) {
  /* header */
  .l3menu h3 {
    margin: 20px 0 0;
  }
  /* ADD navmenubloc_bnr_erea 2024-10-05 */
  .navmenubloc_bnr_erea {
    margin: 20px 0 30px;
  }
  .navmenubloc_bnr_erea a img {
    max-width: 94%;
  }
  /* footer */
  #footnav {
    width: calc(100% - 350px);
  }
}
@media all and (max-width: 1279px) {
  /* google map */
  .google_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
  }
  .google_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* popup */
  #popup {
    display: none !important;
  }
}
@media all and (min-width: 1280px) {
  /* popup */
  #popup {
    display: none;
    position: fixed;
    right: 1%;
    bottom: 90px;
    width: 300px;
    z-index: 9999;
  }
  #popup_close {
    display: block;
    margin-left: auto;
    width: 30px;
    height: 30px;
    background:
      url(../images/common/icon_close.svg) center center / 60% auto no-repeat,
      var(--tc);
    cursor: pointer;
  }
  #popup_inside {
    background: var(--ff);
  }
  #popup_inside a img {
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
}
@media all and (min-width: 1366px) {
  /* header */
  nav ul li.logo {
    margin-left: 30px;
  }
  nav ul li#contact {
    width: 150px;
  }
  nav ul li:not(.logo):not(#contact) {
    padding: 0 1.6em;
  }
  .l2menu p {
    font-size: 1.25rem;
    line-height: 30px;
  }
  .l2menu h2 {
    font-size: 3.125rem;
  }
  .l2menu a.btn {
    font-size: 1.25rem;
  }
  .l3menu ul li {
    margin: 0 2em 2em 0;
  }
  /* footer */
  #footnav {
    width: calc(100% - 500px);
  }
}
/* hover */
@media (any-hover: hover) {
  nav ul li#contact:hover,
  .l2menu a.btn:hover,
  #company_info ul li:last-child a:hover,
  ul#search_txt li input[type="submit"]:hover,
  #submit_btn:hover {
    background: var(--co_or);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  nav ul li:not(.logo):not(#contact) a:hover {
    border-bottom: 2px solid var(--co_bl);
  }
  .l3menu ul li:hover a figure img,
  a.btn_contact:hover,
  #popup_inside a:hover img,
  .navmenubloc_bnr_erea a:hover img {
    opacity: .8;
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  .l3menu ul li:hover a figure figcaption,
  .l3menu ul.second li:hover a span {
    color: var(--co_bl);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  .l3menu ul li.external_link:hover a figure figcaption span.icon_link::before,
  li.external_link a:hover span.icon_link::before {
    display: inline-block;
    content: url(../images/common/icon_link_h.svg);
    width: 13px;
    height: 13px;
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  #footnav ul li a:hover,
  #breadcrumb ul li a:hover {
    color: var(--co_bl);
    text-decoration: underline;
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  a.btn_emizu:hover span {
    color: var(--ff);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  a.btn_emizu:hover {
    background: var(--co_bl);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  a.btn_emizu:hover::before {
    background: var(--ff);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
  #back_btn:hover {
    color: var(--ff);
    background: var(--co_bl);
    border: 1px solid var(--co_bl);
    -webkit-transition: all .3s cubic-bezier(.56,.07,.45,1);
    transition: all .3s cubic-bezier(.56,.07,.45,1);
  }
}
/* support-d */
header#support-d {
  padding-top: 30px;
}
header#support-d img {
  display: block;
  width: 300px;
  margin: 0 auto;
}
.support-d section {
  width: min(96%, 800px);
  margin: 20% auto;
  padding: 3em;
  border: 5px solid var(--line);
}
.support-d section p {
  color: var(--tc);
  font-size: 1.5rem;
  text-align: center;
  font-weight: var(--t7);
  line-height: 1.4;
}
@media all and (max-width: 1023px) {
  header#support-d {
    padding-top: 16px;
  }
  .support-d section {
    padding: 3em 1em;
  }
  .support-d section p {
    font-size: 1.1rem;
  }
}