@charset "UTF-8";
@-webkit-keyframes bgfade {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 91, 172, 0.5);
  }
}
@keyframes bgfade {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 91, 172, 0.5);
  }
}

@-webkit-keyframes bgfade2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 156, 230, 0.5);
  }
}

@keyframes bgfade2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 156, 230, 0.5);
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}

@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSerifCJKjp-Regular.woff") format("woff"),
    url("../font/NotoSerifCJKjp-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif Japanese";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSerifCJKjp-Bold.woff") format("woff"),
    url("../font/NotoSerifCJKjp-Bold.ttf") format("truetype");
}

body {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
  /* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定 */
  font-size: 1.6em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

span,
button,
select {
  -webkit-appearance: none;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

a {
  color: #000;
  text-decoration: none;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

img {
  display: block;
}

.wrap {
  position: relative;
}

.fwb {
  font-weight: bold;
}

.mb3 {
  margin-bottom: 3%;
}

.dib {
  display: inline-block;
}

input[type="text"],
textarea {
  border: none;
  -webkit-appearance: none;
}

button,
select {
  cursor: pointer;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

::-webkit-input-placeholder {
  color: #aaa;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

:-ms-input-placeholder {
  color: #aaa;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

::-ms-input-placeholder {
  color: #aaa;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

::placeholder {
  color: #aaa;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "Noto Serif Japanese", "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

/*    アニメーション    */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeLeft {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes fadeRight {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

@-webkit-keyframes fadeRight {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes load1 {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 0;
  }
}

@keyframes load1 {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 0;
  }
}

@-webkit-keyframes load2 {
  0% {
    -webkit-transform: translateY(103%);
    transform: translateY(103%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 0;
  }
}

@keyframes load2 {
  0% {
    -webkit-transform: translateY(103%);
    transform: translateY(103%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-103%);
    transform: translateY(-103%);
    opacity: 0;
  }
}

@-webkit-keyframes load3 {
  0% {
    top: 103%;
    opacity: 1;
  }
  90% {
    top: -103%;
    opacity: 1;
  }
  100% {
    top: -103%;
    opacity: 0;
  }
}

@keyframes load3 {
  0% {
    top: 103%;
    opacity: 1;
  }
  90% {
    top: -103%;
    opacity: 1;
  }
  100% {
    top: -103%;
    opacity: 0;
  }
}

@-webkit-keyframes coloring {
  0% {
    color: #000;
  }
  100% {
    color: #065bab;
  }
}

@keyframes coloring {
  0% {
    color: #000;
  }
  100% {
    color: #065bab;
  }
}

@-webkit-keyframes coloringBg {
  0% {
    background-color: #000;
  }
  100% {
    background-color: #065bab;
  }
}

@keyframes coloringBg {
  0% {
    background-color: #000;
  }
  100% {
    background-color: #065bab;
  }
}

.contents .contact-form .form-field {
  border-bottom: initial;
}
.contents .contact-form .field-label {
  padding: 15px 0px;
  width: 30%;
  display: inline-block;
}
.contents .contact-form input[type="text"],
.contact-form textarea {
  margin: 12px 0;
  padding: 10px;
  font-size: 1.4rem;
  box-shadow: 0px 0px 4px rgb(160 160 160 / 60%) inset;
  width: 60%;
}
.contents .contact-form .remarks {
  height: 120px;
}
.contact-form .required .field-label::before {
  content: "必須";
  background-color: #fe0100;
  display: inline-block;
  position: relative;
  color: #fff;
  padding: 0 5px;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .contact-form .required .field-label::before {
    display: table;
  }
}
.contact-form .field-label::before {
  content: "任意";
  background-color: #888888;
  display: inline-block;
  position: relative;
  color: #fff;
  padding: 0 5px;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .contact-form .field-label::before {
    display: table;
  }
}
.contact-form .territory select {
  height: 30px;
  width: auto;
  min-width: 100px;
  font-size: 15px;
  padding: 0 8px;
  text-align: center;
}
.contact-form .state select {
  height: 30px;
  width: auto;
  min-width: 100px;
  font-size: 15px;
  padding: 0 8px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .contact-form .territory select {
    margin-bottom: 10px;
  }
}
.form-btn {
  width: 250px;
  height: 65px;
  background-color: rgba(0, 91, 172, 0.9);
  border: 1px solid rgba(0, 91, 172, 0.9);
  color: #fff;
  font-size: 2rem;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s, color 0.5s;
}
.form-btn:hover {
  background-color: #fff;
  color: rgba(0, 91, 172, 0.9);
}
.form-btn.back {
  background-color: #827d7d;
  border: 1px solid #827d7d;
}
.form-btn.back:hover {
  background-color: #fff;
  color: #827d7d;
}
.thanks-message {
  padding-top: 100px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 786px) {
  .thanks-message {
    padding-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .thanks-message {
    padding-top: 40px;
  }
}

.fade-l.view,
.view .fade-l {
  -webkit-animation: fadeLeft 0.5s ease 0.5s forwards;
  animation: fadeLeft 0.5s ease 0.5s forwards;
}

.fade-r.view,
.view .fade-r {
  -webkit-animation: fadeRight 0.5s ease 0.5s forwards;
  animation: fadeRight 0.5s ease 0.5s forwards;
}

.slide-l {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.view .slide-l,
.slide-l.view {
  -webkit-animation: slideLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s
    forwards;
  animation: slideLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.loading {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1000;
  background-color: transparent;
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
}

@-webkit-keyframes pointer {
  0% {
    pointer-events: all;
  }
  100% {
    pointer-events: none;
  }
}

@keyframes pointer {
  0% {
    pointer-events: all;
  }
  100% {
    pointer-events: none;
  }
}

.loaded .loading {
  background-color: transparent;
  -webkit-animation: pointer 0.2s ease 0.5s forwards;
  animation: pointer 0.2s ease 0.5s forwards;
}

.safari .loaded .loading {
  pointer-events: none;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.loading-img {
  display: none;
  width: 250px;
  -webkit-transition: opacity 0.5s ease 0.5s;
  transition: opacity 0.5s ease 0.5s;
}

.top-wrap .loading-img {
  display: block;
}

.loading-img img {
  -webkit-animation: blink 2s ease infinite;
  animation: blink 2s ease infinite;
}

.loaded .loading-img {
  opacity: 0;
}

.loading-bg3 span::before {
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateX(103%);
  transform: translateX(103%);
  content: "";
  opacity: 0;
}

/*    ナビゲーション    */
.header-nav_sp {
  display: none;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header:hover {
  background-color: white;
}

.header-left {
  padding-top: 16px;
  padding-left: 24px;
}

.header-logo {
  display: block;
  width: 220px;
}

.header-logo img {
  width: 100%;
}

.header-right {
  width: 72%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global-nav {
  width: 100%;
  padding-right: 20px;
}

#gcse-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -10;
  pointer-events: none;
}
#gcse-search.view {
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  z-index: 1;
  pointer-events: all;
  overflow-y: scroll;
}

.gsc-control-cse {
  border: initial;
  position: absolute;
  width: 100% !important;
  height: 100%;
  background-color: initial !important;
  border: initial !important;
}

.nav-tel,
.global-nav_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-tel_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-tel_number a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-weight: bold;
  font-size: 2.2rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-tel_number a img {
  width: 18px;
  height: 28px;
  margin-right: 4px;
  margin-top: 2px;
}

.nav-tel_desc {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
}

.nav-tel li {
  padding: 0 10px;
}

.global-nav_lists {
  padding: 4px 0;
}

.global-nav_list a {
  padding: 8px 10px;
  border-left: 1px solid #000;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-tel_number a:hover,
.global-nav_list a:hover {
  color: #065bab;
}

.global-nav_list:first-child a,
.global-nav_list:last-child a {
  border-left: none;
}

.global-nav_list:last-child a,
.contact-btn {
  text-align: center;
  border: 1px solid transparent;
  background-color: #065bab;
  color: #fff;
  padding: 6px 8px;
  line-height: 1.2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
}

.global-nav_recruit a {
  margin: 0 5px;
  color: #fff;
  background-color: rgba(0, 156, 230, 0.7);
  font-weight: bold;
  padding: 3.5px 5px;
  display: block;
  border: solid 1px rgba(0, 156, 230, 0.7);
  transition: 0.5s;
}
.global-nav_recruit a:hover {
  color: rgba(0, 156, 230, 0.7);
  background-color: #fff;
}

.nav-tel .serch {
  padding: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 5px;
  border: 1px solid #000;
  position: relative;
}
.nav-tel .serch::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 5px;
  height: 3px;
  width: 30px;
  background-color: #000;
  transform: rotate(-45deg);
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
}
.nav-tel .serch::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 5px;
  height: 3px;
  width: 30px;
  background-color: #000;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
}
.nav-tel .serch.close::before {
  opacity: 1;
}
.nav-tel .serch.close::after {
  opacity: 1;
}
.global-nav_serch {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0.12em solid #000;
  margin-left: 5px;
  transition: opacity 0.3s;
}

.global-nav_serch::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 50%;
  width: 80%;
  height: 23%;
  background: #000;
  margin: 0.2em 0 0 0.14em;
  transform: rotate(45deg);
}

form.gsc-search-box {
  width: 530px !important;
  margin: 0 auto !important;
  border: 1px solid #065bab;
}
.gsc-input-box {
  border-top-left-radius: initial !important;
  border-bottom-left-radius: initial !important;
  border: initial !important;
}
table.gsc-search-box {
  margin-bottom: 0 !important;
}
.gsc-search-button {
  background-color: #065bab;
}
.gsc-search-button-v2 {
  border-color: #065bab !important;
  background-color: #065bab !important;
  transition: opacity 0.3s;
}

.gsc-search-button-v2:hover {
  opacity: 0.9;
}

input.gsc-input {
  background: initial !important;
}

.contact-btn.active {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
  -webkit-animation: fadeIn 0.5s forwards;
  animation: fadeIn 0.5s forwards;
}

.win .global-nav_list:last-child a,
.win .contact-btn {
  border: 2px solid transparent;
}

.global-nav_list:last-child a span,
.contact-btn span {
  font-weight: bold;
}

.global-nav_list span,
.contact-btn .text-s {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}

.hamburger {
  position: relative;
  width: 75px;
  height: 80px;
  border-left: 1px solid #000;
  cursor: pointer;
  margin: 6px 0;
}

.hamburger-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 42px;
  height: 42px;
  z-index: 5;
  cursor: pointer;
}

.hamburger-line {
  position: absolute;
  left: 2px;
  width: 38px;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.win .hamburger-line {
  height: 2px;
}

.hamburger-line_1 {
  top: 8px;
}

.nav-open .hamburger-line_1 {
  -webkit-transform: translate3d(0, 13px, 0) rotate(45deg);
  transform: translate3d(0, 13px, 0) rotate(45deg);
}

.hamburger-line_2 {
  top: 21px;
  width: 30px;
}

.hamburger:hover .hamburger-line_2 {
  width: 38px;
}

.nav-open .hamburger-line_2 {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.hamburger-line_3 {
  top: 34px;
}

.nav-open .hamburger-line_3 {
  -webkit-transform: translate3d(0, -13px, 0) rotate(-45deg);
  transform: translate3d(0, -13px, 0) rotate(-45deg);
}

.hamburger .font {
  position: absolute;
  bottom: 5px;
  right: 18px;
  font-size: 1.3rem;
  font-weight: bold;
}

.header-nav_lists {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  padding-top: 5%;
  margin-top: 111px;
  width: 100%;
  height: calc(100vh - 111px);
  background-color: rgba(0, 91, 172, 0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
}

.nav-open .header-nav_lists {
  opacity: 1;
  pointer-events: all;
}

.header-nav_list a {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-nav_list dd a {
  padding-left: 50px;
}

.header-nav_list a span {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.header-nav_list a:hover {
  background-color: #fff;
}

.header-nav_list a:hover span {
  color: #065bab;
}

/*     フッター     */
.footer-contact {
  padding-bottom: 5%;
  position: relative;
  z-index: 3;
}

.footer-contact .more-btn,
.more-btn.large-btn {
  width: 50%;
}

.footer-contact .more-btn > span {
  width: 100%;
  font-weight: bold;
}
.footer-contact_text {
  width: 50%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 650px) {
  .footer-contact_text {
    width: 75%;
    margin-bottom: 40px;
  }
}

.footer-contact_tel {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  z-index: 3;
}

.footer-contact_tel_desc {
  display: block;
}

.footer-contact_tel_desc span {
  vertical-align: text-top;
  line-height: 1.7;
  display: inline-block;
  padding-top: 4px;
}

.footer-contact_tel_number {
  display: block;
  padding-left: 22px;
  position: relative;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-contact_tel_number:hover {
  color: #065bab;
}

.footer-contact_tel_number img {
  position: absolute;
  width: 18px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-sitemap {
  background-color: #eee;
}

.footer-sitemap_logo {
  padding: 30px;
}

.footer-sitemap_logo a {
  display: block;
  width: 200px;
}

.footer-sitemap_logo a img {
  width: 100%;
}

.footer-sitemap_lists {
  padding-bottom: 5%;
}

.footer-sitemap_list {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-sitemap_list dt a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 14px 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-sitemap_list dt a:hover,
.footer-sitemap_list dd a:hover {
  color: #065bab;
}

.footer-sitemap_list dt a::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 6px;
  height: 6px;
  right: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.footer-sitemap_list dd a {
  position: relative;
  display: inline-block;
  padding: 14px 30px 14px 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-sitemap_list dd a::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 6px;
  height: 6px;
  right: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.footer-link {
  background-color: #ddd;
}

.footer-link_logo {
  padding: 20px;
  position: relative;
  z-index: 3;
}

.footer-link_logo .f-logo {
  display: block;
  width: 360px;
}

.footer-link_logo .f-logo img {
  width: 100%;
}

.footer-link_lists {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0 70px;
}

.footer-link_list {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px 20px;
  position: relative;
  z-index: 3;
}

.footer-link_list a,
.footer-link_list .f-logo {
  display: block;
  height: 36px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-link_list .f-logo.chizai {
  height: 28px;
  margin-top: 8px;
}

.footer-link_list .f-logo.law {
  height: 29px;
  margin-top: 6px;
}

.footer-link_list a:hover {
  opacity: 0.7;
}

.footer-link_list a img,
.footer-link_list .f-logo img {
  height: 100%;
  max-width: 100%;
}

.footer-base {
  color: #fff;
  background-color: #065bab;
  padding: 10px 0;
  position: relative;
  z-index: 30;
}

.footer-base_col {
  text-align: center;
}

.footer-base_col .small {
  font-size: 1.4rem;
  color: #fff;
  padding: 10px 0;
}

.footer-base_col .small a {
  color: #fff;
}

.footer-base_col .copy {
  padding: 6px 0;
}

.footer-base_nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 8px;
}

.footer-base_nav li {
  width: 205px;
}

.footer-base_nav li a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 2px 14px;
  border-right: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-base_nav li:last-child a {
  border-right: none;
}

.footer-base_nav li a:hover {
  color: #065bab;
  background-color: #fff;
}
.footer-base_nav li a:hover .fa-facebook-square:before {
  color: #065bab;
}
.footer-base_nav li a:hover .fa-twitter:before {
  color: #065bab;
}

/*    スライダー     */
.slick-next,
.slick-prev {
  display: none !important;
}

/*    共通    */
.inner {
  max-width: 1024px;
  margin: 0 auto;
}

.ofh {
  overflow: hidden;
}

.breadcrumbs {
  padding: 20px 30px;
  position: relative;
  z-index: 3;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 1.4rem;
}

.breadcrumbs a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.breadcrumbs a:hover {
  color: #065bab;
}

.fixed-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: 480px;
  padding: 12px;
  background-color: #fff;
  z-index: 31;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .fixed-banner {
    width: 390px;
  }
}

@media screen and (max-width: 768px) {
  .fixed-banner {
    width: 300px;
  }
}

@media screen and (max-width: 500px) {
  .fixed-banner {
    width: 280px;
    padding: 8px;
  }
}

.fixed-banner.active {
  opacity: 1;
}

.fixed-banner a {
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.fixed-banner a:hover {
  opacity: 0.7;
}

.fixed-banner img {
  width: 100%;
}

.fixed-banner-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #005bac;
  color: #fff;
  font-size: 1.2rem;
  z-index: 31;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .fixed-banner-close {
    width: 40px;
    height: 40px;
  }
}

.contact-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  width: 200px;
  background-color: rgba(6, 91, 171, 0.8);
  padding: 8px 36px 8px 8px;
  z-index: 30;
  opacity: 0;
  -webkit-animation: fadeOut 0.5s forwards;
  animation: fadeOut 0.5s forwards;
}

@-webkit-keyframes hover {
  0% {
    border: 1px solid transparent;
    color: #fff;
    background-color: rgba(6, 91, 171, 0.8);
  }
  100% {
    border: 1px solid #065bab;
    color: #065bab;
    background-color: #fff;
  }
}

@keyframes hover {
  0% {
    border: 1px solid transparent;
    color: #fff;
    background-color: rgba(6, 91, 171, 0.8);
  }
  100% {
    border: 1px solid #065bab;
    color: #065bab;
    background-color: #fff;
  }
}

.contact-btn:hover {
  -webkit-animation: hover 0.5s ease forwards;
  animation: hover 0.5s ease forwards;
}

.contents {
  position: relative;
}

.gray-lines {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.gray-line {
  position: relative;
  width: 25%;
  height: 100%;
}

.gray-line canvas {
  position: absolute;
  right: -2px;
  width: 7px;
}

.gray-line #sample {
  top: 0px;
}

.gray-line #sample2 {
  top: 30px;
}

.gray-line #sample3 {
  top: 20px;
}

.gray-line::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
  content: "";
}

.win .gray-line::after {
  width: 2px;
  right: -1px;
  background-color: rgba(180, 180, 180, 0.2);
}

@-webkit-keyframes bit1 {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 10px;
  }
}

@keyframes bit1 {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 10px;
  }
}

@-webkit-keyframes bit2 {
  0% {
    bottom: 40px;
    opacity: 0.4;
  }
  50% {
    bottom: 65px;
    opacity: 0.1;
  }
  100% {
    bottom: 40px;
    opacity: 0.4;
  }
}

@keyframes bit2 {
  0% {
    bottom: 40px;
    opacity: 0.4;
  }
  50% {
    bottom: 65px;
    opacity: 0.1;
  }
  100% {
    bottom: 40px;
    opacity: 0.4;
  }
}

@-webkit-keyframes bit3 {
  0% {
    bottom: 20px;
    opacity: 0.4;
  }
  50% {
    bottom: 35px;
    opacity: 0.2;
  }
  100% {
    bottom: 20px;
    opacity: 0.4;
  }
}

@keyframes bit3 {
  0% {
    bottom: 20px;
    opacity: 0.4;
  }
  50% {
    bottom: 35px;
    opacity: 0.2;
  }
  100% {
    bottom: 20px;
    opacity: 0.4;
  }
}

@-webkit-keyframes bit4 {
  0% {
    top: 0%;
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

@keyframes bit4 {
  0% {
    top: 0%;
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(6, 91, 171, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 4px rgba(6, 91, 171, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(6, 91, 171, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(6, 91, 171, 0.4);
    box-shadow: 0 0 0 0 rgba(6, 91, 171, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 4px rgba(6, 91, 171, 0);
    box-shadow: 0 0 0 4px rgba(6, 91, 171, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(6, 91, 171, 0);
    box-shadow: 0 0 0 0 rgba(6, 91, 171, 0);
  }
}

.sub-mv .mv-catch .catch-en {
  display: table;
}

/*    共通クラス    */
.txt-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.ofi {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.ofi-c {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.ml25 {
  margin-left: 25%;
}

.ml50 {
  margin-left: 50%;
}

.ml75 {
  margin-left: 75%;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fl25 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.fl50 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.fl75 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

.fww {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.w-50 {
  width: 50%;
  margin: 0 auto;
  overflow: hidden;
}

.w-75 {
  width: 75%;
}

.sp-only,
.tab-only {
  display: none !important;
}

.thumb {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.bluebg {
  background-color: rgba(0, 91, 172, 0.9);
}

.blue-tag.license-tag {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.blue-tag.licence-tag:not(:first-child) {
  margin-left: 8px;
}

.link-blue {
  position: relative;
  height: 320px;
  margin-bottom: 5%;
  background-size: cover;
  background-position: center;
}

.link-blue .link-bx {
  bottom: 20px;
  right: 18px;
}

.link-blue:last-child,
.link-blue:nth-last-child(2) {
  margin-bottom: 0;
}

.link-blue.view .ttl-01::before {
  background-color: #fff;
}

.link-blue a {
  height: 100%;
  position: relative;
  z-index: 5;
}

.link-blue a::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.link-blue a::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(0, 91, 172, 0.5);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.link-blue .ttl-01,
.link-blue .ttl-ruby {
  color: #fff;
}

.link-blue .txt-shadow {
  text-shadow: none;
}

.link-blue a:hover .txt-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
}
.link-blue a:hover + .b-back1 span::before {
  opacity: 0;
}

.link-bx {
  width: 30px;
  height: 28px;
  border: 1px solid #fff;
  position: absolute;
  bottom: 12px;
  right: 9px;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.win .link-bx {
  border: 2px solid #fff;
}

.link-bx::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.win .link-bx::after {
  top: 7px;
  left: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.desc {
  padding: 5% 0;
}

.desc.p-3 {
  padding: 3% 0;
}

.ttl-01 {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  font-size: 5rem;
  line-height: 1.2;
  overflow: hidden;
  padding-left: 30px;
  letter-spacing: 0.15em;
  z-index: 3;
}

.ttl-01::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: rgba(180, 180, 180, 0.6);
  width: 100%;
  content: "";
  -webkit-transition: background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  transition: background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s,
    background-color 0.5s ease-in-out 0.8s;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s,
    background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.view .ttl-01::before {
  background-color: #000;
}

.ttl-ruby {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  font-size: 1.8rem;
  z-index: 3;
}

.ttl-01 span,
.ttl-ruby span {
  font-weight: bold;
  display: block;
  /* transition: .5s cubic-bezier(.05,.39,.76,.89) .8s, text-shadow .5s; */
}

.ttl-ruby span {
  margin-top: 4px;
}

.desc-head {
  margin-top: 80px;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  -webkit-transform: translateZ(3px);
  transform: translateZ(3px);
}

.desc-txt {
  margin-top: 32px;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  -webkit-transform: translateZ(3px);
  transform: translateZ(3px);
}

.desc-head span {
  font-weight: bold;
  display: block;
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
}

.desc-txt span {
  display: block;
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s;
}

.btn-slider {
  z-index: 5;
  position: relative;
}

.btn-slider_prev {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: #eee;
  border: 1px solid #000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-slider_prev:hover,
.btn-slider_next:hover {
  background-color: #065bab;
  border-color: #065bab;
}

.btn-slider_prev::after {
  position: absolute;
  content: "";
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  left: 18px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-slider_prev:hover::after,
.btn-slider_next:hover::after {
  border-color: #fff;
}

.btn-slider_next {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: #eee;
  border: 1px solid #000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-slider_next::after {
  position: absolute;
  content: "";
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-btn {
  position: relative;
  display: block;
  overflow: hidden;
  width: 260px;
  margin-top: 50px;
  z-index: 10;
}

.more-btn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  line-height: 1.3;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  background-color: rgba(0, 91, 172, 0.9);
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.more-btn.blk > span {
  background-color: #000;
}

.entry_btnarea .link-bx,
.more-btn .link-bx {
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.link-bx.down::after {
  top: 7px;
  left: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.win .link-bx.down::after {
  top: 5px;
  left: 8px;
}

.win .more-btn > span {
  border: 2px solid transparent;
}

.global-nav_list:last-child a:hover,
.contact-btn:hover,
.more-btn:hover > span,
a:hover .more-btn > span {
  border: 1px solid #065bab;
  color: #065bab;
  background-color: #fff;
}

.more-btn.blk:hover > span {
  border: 1px solid #000;
  color: #000;
}

.win .more-btn.blk:hover > span {
  border: 2px solid #000;
}

.contact-btn:hover .link-bx,
.more-btn:hover .link-bx,
a:hover .more-btn .link-bx {
  border: 1px solid #065bab;
}

.more-btn.blk:hover .link-bx {
  border: 1px solid #000;
}

.win .global-nav_list:last-child a:hover,
.win .contact-btn:hover,
.win .more-btn:hover > span,
.win a:hover .more-btn > span,
.win .contact-btn:hover .link-bx,
.win .more-btn:hover .link-bx,
.win a:hover .more-btn .link-bx {
  border: 2px solid #065bab;
}

.win .more-btn.blk:hover .link-bx {
  border: 2px solid #000;
}

.contact-btn:hover .link-bx::after,
.more-btn:hover .link-bx::after,
a:hover .more-btn .link-bx::after {
  border-color: #065bab;
}

.more-btn.blk:hover .link-bx::after {
  border-color: #000;
}

.more-btn.l-blue_btn span {
  background-color: #009ce6;
}

.more-btn.l-blue_btn:hover span {
  background-color: #fff;
  border-color: #009ce6;
  color: #009ce6;
}

.more-btn.l-blue_btn:hover .link-bx {
  border-color: #009ce6;
}

.more-btn.l-blue_btn:hover .link-bx::after {
  border-color: #009ce6;
}

.w-back,
.b-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  pointer-events: none;
  overflow: hidden;
}

.w-back1 span,
.w-back4 span,
.w-back5 span,
.w-back6 span {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.w-back5 span,
.w-back6 span {
  width: 100%;
}

.w-back1 span:nth-child(1),
.w-back2 span:nth-child(1),
.w-back4 span:nth-child(1),
.w-back5 span,
.w-back6 span {
  left: 0;
}

.w-back1 span:nth-child(2),
.w-back4 span:nth-child(2) {
  left: 50%;
}

.w-back2 span {
  position: absolute;
  top: 0;
  width: 33.33%;
  height: 100%;
  overflow: hidden;
}

.w-back2 span:nth-child(2) {
  left: 33.33%;
}

.w-back2 span:nth-child(3) {
  left: 66.66%;
}

.view .w-back2 span:nth-child(1)::before,
.view .w-back2 span:nth-child(3)::before,
.slick-active .w-back2 span:nth-child(1)::before,
.slick-active .w-back2 span:nth-child(3)::before,
.view .w-back3 span:nth-child(1)::before,
.view .w-back3 span:nth-child(3)::before,
.slick-active .w-back3 span:nth-child(1)::before,
.slick-active .w-back3 span:nth-child(3)::before,
.view .w-back4 span:nth-child(1)::before,
.view .w-back4 span:nth-child(2)::before {
  -webkit-transform: translateY(-103%);
  transform: translateY(-103%);
}

.view .w-back2 span:nth-child(2)::before,
.slick-active .w-back2 span:nth-child(2)::before,
.view .w-back3 span:nth-child(2)::before,
.view .w-back3 span:nth-child(4)::before,
.slick-active .w-back3 span:nth-child(2)::before,
.slick-active .w-back3 span:nth-child(4)::before {
  -webkit-transform: translateY(103%);
  transform: translateY(103%);
}

.w-back3 span,
.w-back7 span {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  overflow: hidden;
}

.w-back3 span:nth-child(2),
.w-back7 span:nth-child(2) {
  left: 25%;
}

.w-back3 span:nth-child(3),
.w-back7 span:nth-child(3) {
  left: 50%;
}

.w-back3 span:nth-child(4),
.w-back7 span:nth-child(4) {
  left: 75%;
}

.b-back span::before {
  position: absolute;
  background-color: rgba(0, 91, 172, 0.5);
  top: 0;
  left: 0;
  height: 100%;
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.b-back1 span::before {
  width: 50%;
}

.b-back1 span:nth-child(2)::before {
  left: initial;
  right: 66px;
  width: calc(50% - 66px);
}

.b-back2 span::before {
  width: 25%;
}

.b-back2 span:nth-child(2)::before {
  left: 25%;
}

.b-back2 span:nth-child(3)::before {
  left: 50%;
}

.b-back2 span:nth-child(4)::before {
  left: 75%;
}

.b-back3 span::before {
  left: 0;
  width: 100%;
  -webkit-transform: translateY(103%);
  transform: translateY(103%);
  background-color: rgba(6, 92, 172, 0.5);
}

.is-active .b-back3 span::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.b-back4 span::before {
  width: 100%;
  -webkit-transform: translateX(-103%);
  transform: translateX(-103%);
  background-color: rgba(6, 92, 172, 0.5);
}

.is-active .b-back4 span::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.b-back5 span::before {
  width: 100%;
  -webkit-transform: translateY(-103%);
  transform: translateY(-103%);
  background-color: rgba(6, 92, 172, 0.5);
}

.column-slider_list a:hover .b-back5 span::before,
.is-active .b-back5 span::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.b-back6 span::before {
  width: 25%;
  background-color: rgba(6, 92, 172, 0.1);
}

.b-back6 span::before {
  -webkit-transform: translateY(-103%);
  transform: translateY(-103%);
}

.b-back6 span:nth-child(2)::before {
  left: 25%;
}

.b-back6 span:nth-child(3)::before {
  left: 50%;
}

.b-back6 span:nth-child(4)::before {
  left: 75%;
}

.column-banner:hover .b-back6 span::before,
.top-recruit_link:hover .b-back6 span::before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/*     下層     */
.sub-mv {
  position: relative;
  width: 100%;
  margin-top: 125px;
  overflow: hidden;
}
@media screen and (max-height: 780px) and (max-width: 1080px) {
  .sub-mv {
    margin-top: 110px;
  }
}
@media screen and (max-height: 780px) and (max-width: 810px) {
  .sub-mv {
    margin-top: 100px;
  }
}
@media screen and (max-height: 780px) and (max-width: 500px) {
  .sub-mv {
    margin-top: 90px;
  }
}

.sub-mv_box {
  position: absolute;
  top: 0;
  left: 0;
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-mv .mv-catch {
  top: 58%;
}

.sub-mv .catch-en span {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
}

.sub-mv .catch-ruby span {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
}

.sub-mv .catch-en::before {
  -webkit-transition: background-color 0.5s ease-in-out 1.2s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.9s;
  transition: background-color 0.5s ease-in-out 1.2s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.9s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.9s,
    background-color 0.5s ease-in-out 1.2s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.9s,
    background-color 0.5s ease-in-out 1.2s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.9s;
}

.pager {
  padding: 5% 0;
}

.page-numbers {
  text-align: center;
}

.pager .page-numbers li {
  margin: 0 10px;
  padding: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  position: relative;
}

.pager .page-numbers span.page-numbers {
  color: #000;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 20px;
  height: 20px;
  padding-left: 1px;
}

.pager .page-numbers li a {
  width: 20px;
  height: 20px;
  padding-left: 1px;
  text-align: center;
  display: table-cell;
  text-decoration: none;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}

.pager .page-numbers li a:hover,
.pager .page-numbers li .current {
  color: #fff;
  background: #065bab;
}

.page-btns {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
  position: relative;
  z-index: 3;
}

.page-btn {
  position: relative;
  width: 22%;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.page-btn span {
  position: relative;
  height: 50px;
  width: 100%;
  background-color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.page-btn:hover span {
  background-color: #f1f1f1;
  color: #065bab;
}

.page-btn.next {
  margin-right: 3%;
}

.page-btn.next:first-child {
  margin-left: auto;
}

.page-btn:hover {
  opacity: 0.8;
}

.page-btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.page-btn.prev span::after {
  left: 20px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.page-btn.next span::after {
  right: 20px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.page-btn:hover span::after {
  border-color: #065bab;
}

.selects {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.selects-wrap {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
}

.selectbtn {
  position: relative;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.selectbtn::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  color: #fff;
  content: "▼";
  font-size: 1rem;
  z-index: 3;
}

.selects-wrap select {
  position: relative;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  display: block;
  width: 240px;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.selects-wrap select:hover {
  opacity: 0.8;
}

.selects-wrap .select1 {
  background-color: #a2a2a2;
}

.selects-wrap .select1 {
  background-color: rgba(0, 91, 172, 0.9);
}

.selects-wrap .select2 {
  background-color: #009ce6;
}

.blue-tag {
  background-color: rgba(0, 91, 172, 0.9);
  padding: 6px 10px;
  color: #fff;
  display: inline-block;
  margin: 5px 0 24px;
  position: relative;
  z-index: 3;
}

.blue-tag.lblue-tag {
  background-color: rgba(0, 156, 230, 0.9);
}

.staff-thumb,
.staff-thumb img {
  height: 450px;
}

.staff-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
}

.staff-desc dd {
  overflow: hidden;
  /* margin-top: 40px; */
  min-height: 115px;
}

.staff-desc dd span {
  display: inline-block;
}

.staff-desc dd span:nth-child(1),
.staff-desc dt span {
  padding-left: 16px;
}

.staff-desc dt {
  display: inline-block;
  line-height: 1;
  margin-top: 60px;
}

.staff-desc dt .ttl-01 {
  display: block;
}

.staff-desc dt span {
  line-height: 1.4;
  display: inline-block;
}

.staff-desc dt .ttl-01,
.staff-desc dt .ttl-ruby {
  padding-left: 0;
}

.staff-desc dt .ttl-01 {
  font-size: 1.6rem;
}

.staff-desc dt .ttl-01 span {
  line-height: 1.3;
}

.staff-desc dt .ttl-01::before {
  height: 1px;
}

.staff-desc dt span:nth-child(1) {
  position: relative;
}

.staff-desc .desc-txt {
  margin-top: 0;
  padding-left: 0;
}

.staff-desc .blue-tag {
  display: inline-block;
}

.staff-name {
  font-size: 2.8rem;
}

.staff-tel_desc {
  font-weight: bold;
  font-size: 1.8rem;
}

.area-tag {
  display: block;
  width: 140px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: rgba(0, 156, 230, 0.7);
}

/*チェックロゴ*/
.checkLogo {
  position: relative;
  width: 30px;
  height: 28px;
  border: 3px solid #000000;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.win .checkLogo {
  border: 2px solid #000000;
}

.checkLogo::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 14px;
  height: 8px;
  border-top: 3px solid #005bac;
  border-right: 3px solid #005bac;
  -webkit-transform: rotate(135deg) scale(0);
  transform: rotate(135deg);
  -webkit-transition: 1s ease 0.4s;
  transition: 1s ease 0.4s;
}

.win .checkLogo::after {
  top: 4.2px;
  left: 5px;
  border-top: 3px solid #005bac;
  border-right: 3px solid #005bac;
}

/*チェックロゴ*/
/*三連矢印*/
/*三連矢印*/
.flow_arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100vw;
  height: 100px;
}

.flow_arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25%;
  height: 100%;
}

.flow_arrow span {
  position: absolute;
  right: -11px;
  top: -7px;
  height: 21px;
  width: 24px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: rotate(107deg) skew(-36deg, 18deg);
  transform: rotate(107deg) skew(-36deg, 18deg);
}

.flow_arrow span:nth-child(2) {
  top: 19px;
}

.flow_arrow span:nth-child(3) {
  top: 45px;
}

/*三連矢印*/
/*    遅延用    */
.view .more-btn span.delay1,
.more-btn.view span.delay1,
.view .delay1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.view .more-btn span.delay3,
.more-btn.view span.delay3,
.view .delay3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.view .more-btn span.delay5,
.more-btn.view span.delay5,
.view .delay5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.view .more-btn span.delay7,
.more-btn.view span.delay7,
.view .delay7,
.delay7.view {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.view .more-btn span.delay9,
.more-btn.view span.delay9,
.view .delay9 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.view .more-btn span.delay11,
.more-btn.view span.delay11,
.view .delay11,
.view.delay11 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.view .more-btn span.delay13,
.more-btn.view span.delay13,
.view .delay13,
.delay13.view {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.view .more-btn span.delay15,
.more-btn.view span.delay15,
.view .delay15,
.delay15.view {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.view .more-btn span.delay17,
.more-btn.view span.delay17,
.view .delay17,
.delay17.view {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.view .more-btn span.delay19,
.more-btn.view span.delay19,
.view .delay19,
.delay19.view {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.view .delay21,
.delay21.view {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.desc-head span.tdelay3,
.desc-txt span.tdelay3 {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.desc-txt span.tdelay5 {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.view .tdelay5,
.tdelay5.view {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.desc-txt span.tdelay7 {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s;
}

.view .tdelay7,
.tdelay7.view {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.desc-txt span.tdelay9 {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
}

.view .tdelay9,
.tdelay9.view {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

@media screen and (max-width: 1170px) {
  .global-nav_lists {
    padding: 2px 0;
    font-size: 1.4rem;
  }
  .header-logo {
    width: 185px;
  }
  .header-right {
    width: 78%;
  }
  .header-nav_lists {
    margin-top: 108px;
    height: calc(100vh - 108px);
  }
  .global-nav_list a {
    padding: 6px 8px;
  }
  .fl50:nth-child(2) .footer-contact_tel {
    padding-left: 20px;
  }
  .footer-contact_tel_number {
    font-size: 2.2rem;
  }
}

@media screen and (max-height: 780px) {
  .header {
    padding: 5px 0;
  }
  .win .header-nav_lists {
    margin-top: 99px;
    height: calc(100vh - 99px);
  }
  .header-nav_lists {
    margin-top: 96px;
    height: calc(100vh - 96px);
  }
  .header-right {
    width: 75%;
  }
  .hamburger .font {
    bottom: 3px;
    right: 18px;
  }
  .global-nav_lists {
    font-size: 1.4rem;
  }
  .hamburger {
    height: 70px;
  }
  .nav-tel_number a {
    font-size: 2rem;
  }
  .nav-tel_number a img {
    width: 16px;
    height: 26px;
  }
}

@media screen and (max-height: 780px) and (max-width: 1170px) {
  .win .header-nav_lists {
    margin-top: 92px;
    height: calc(100vh - 92px);
  }
}

@media screen and (min-width: 1025px) and (max-height: 660px) {
  .header-nav_lists {
    padding-top: 3%;
  }
  .header-nav_list a {
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 1025px) and (max-height: 600px) {
  .header-nav_lists {
    padding-top: 2%;
  }
  .header-nav_list a {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 58.6%;
  }
  .header-nav_lists {
    margin-top: 93px;
    height: calc(100vh - 93px);
  }
  .ipad:not(.safari) .header-nav_lists {
    margin-top: 96px;
    height: calc(100vh - 96px);
  }
  .safari .header-nav_lists {
    margin-top: 92px;
    height: calc(100vh - 92px);
  }
  .header-right {
    width: 75%;
  }
  .hamburger .font {
    bottom: 3px;
    right: 18px;
  }
  .header-nav_list a {
    padding-left: 14px;
  }
  .header-nav_list dd a {
    padding-left: 33px;
  }
  .global-nav {
    padding: 0 10px;
  }
  .global-nav_lists {
    font-size: 1.4rem;
  }
  .hamburger {
    height: 70px;
  }
  .ttl-01 {
    font-size: 4.5rem;
  }
  .more-btn {
    width: 220px;
    margin-top: 40px;
  }
  .more-btn > span {
    height: 54px;
  }
  .nav-tel_number a {
    font-size: 2rem;
  }
  .nav-tel_number a img {
    width: 16px;
    height: 26px;
  }
  .link-bx {
    width: 26px;
    height: 26px;
  }
  .link-blue a::before {
    width: 44px;
  }
  .link-blue a::after {
    width: 44px;
  }
  .link-blue .link-bx {
    bottom: 16px;
    right: 9px;
  }
  .link-bx::after {
    width: 6px;
    height: 6px;
  }
  .link-bx.down::after {
    left: 8px;
    top: 7px;
  }
  .link-blue {
    height: 280px;
  }
  .b-back1 span:nth-child(2)::before {
    right: 44px;
    width: calc(50% - 44px);
  }
  .selectbtn {
    width: 90%;
  }
  .selects-wrap select {
    width: 100%;
  }
  .staff-thumb,
  .staff-thumb img {
    height: 400px;
  }
  /*　フッター　*/
  .fl50:nth-child(2) .footer-contact_tel {
    padding-left: 30px;
  }
  .footer-contact_tel_number {
    font-size: 2.4rem;
  }
  .footer-link_logo .f-logo {
    width: 300px;
  }
  .footer-sitemap_list dt a,
  .footer-sitemap_list dd a {
    font-size: 1.4rem;
  }
  .footer-sitemap_list dt a::after,
  .footer-sitemap_list dd a::after {
    right: 14px;
  }
  .footer-link_list {
    padding: 10px 12px;
  }
  .footer-link_list a,
  .footer-link_list .f-logo {
    height: 32px;
  }
}

/*グローバルナビ非表示用*/
@media screen and (max-width: 990px) {
  .global-nav_lists {
    display: none;
  }
  .footer-contact .fl50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-contact .d-f {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 54.7%;
  }
  .global-nav_recruit {
    display: none;
  }
  .nav-tel .serch {
    display: none;
  }
  .hamburger {
    width: 86px;
  }
  .header-logo {
    width: 180px;
  }
  .nav-tel_number a {
    padding: 4px 0;
    font-size: 2.2rem;
  }
  .nav-tel_number a img {
    margin-top: 0;
    width: 14px;
  }
  .header-nav_lists {
    margin-top: 92px;
    height: calc(100vh - 92px);
  }
  .ipad:not(.safari) .header-nav_lists,
  .safari .header-nav_lists {
    margin-top: 98px;
    height: calc(100vh - 98px);
  }
  .header-nav_list dt a {
    padding-left: 6px;
  }
  .header-nav_list dd a {
    padding-left: 16px;
  }
  .nav-tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .nav-tel_number {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .ttl-01 {
    font-size: 4rem;
    padding-left: 20px;
  }
  .ttl-ruby {
    font-size: 1.7rem;
    padding-left: 20px;
  }
  .desc-head {
    margin-top: 60px;
    padding-left: 20px;
  }
  .more-btn {
    width: 180px;
    margin-top: 35px;
  }
  .more-btn > span {
    height: 50px;
  }
  .desc-txt {
    margin-top: 22px;
    padding-left: 20px;
  }
  .checkLogo {
    width: 26px;
    height: 24px;
  }
  .checkLogo::after {
    width: 10px;
    height: 6px;
  }
  .link-blue {
    height: 240px;
  }
  .tab-no {
    display: none;
  }
  .tab-only {
    display: inline-block !important;
  }
  .link-bx {
    width: 22px;
    height: 22px;
  }
  .link-bx::after {
    top: 7px;
    left: 5px;
  }
  .link-bx.down::after {
    left: 6px;
    top: 5px;
  }
  /*　フッター　*/
  .footer-contact_tel {
    display: block;
    padding-left: 20px;
  }
  .btn-slider_prev,
  .btn-slider_next {
    width: 36px;
    height: 36px;
  }
  .btn-slider_prev:hover,
  .btn-slider_next:hover {
    background-color: #eee;
    border-color: #000;
  }
  .btn-slider_prev:hover::after,
  .btn-slider_next:hover::after {
    border-color: #000;
  }
  .btn-slider_prev::after {
    top: 13px;
    width: 8px;
    height: 8px;
    left: 15px;
  }
  .btn-slider_next::after {
    top: 13px;
    width: 8px;
    height: 8px;
    right: 15px;
  }
  .selects {
    position: relative;
    z-index: 3;
  }
  .selects-wrap::before {
    left: calc(90% - 20px);
  }
  .selects-wrap .selectbtn {
    width: 90%;
  }
  .selects-wrap select {
    width: 100%;
    height: 40px;
  }
  .flow_arrows {
    height: 80px;
  }
  .flow_arrow span {
    right: -7px;
    top: -7px;
    height: 14px;
    width: 16px;
  }
  .flow_arrow span:nth-child(2) {
    top: 12px;
  }
  .flow_arrow span:nth-child(3) {
    top: 31px;
  }
  .staff-thumb,
  .staff-thumb img {
    height: 340px;
  }
  .staff-desc dt {
    margin-top: 35px;
  }
  .contact-btn {
    width: 170px;
    padding: 8px 30px 8px 18px;
  }
  /*　フッター　*/
  .footer-contact_tel_desc br {
    display: none;
  }
  .fl50:nth-child(2) .footer-contact_tel {
    padding-left: 20px;
  }
  .footer-contact_tel_desc {
    margin-bottom: 2px;
  }
  .footer-contact_tel_desc span {
    padding-top: 0;
  }
  .footer-sitemap_logo {
    padding: 25px 10px;
  }
  .footer-sitemap_logo a {
    width: 175px;
  }
  .footer-base_nav li {
    width: 170px;
  }
  .footer-link_list a,
  .footer-link_list .f-logo,
  .footer-link_list .f-logo.chizai,
  .footer-link_list .f-logo.law {
    height: 26px;
  }
  .footer-link_list {
    padding: 10px 6px;
  }
  .footer-sitemap {
    display: none;
  }
  .footer-link_logo .f-logo {
    width: 260px;
  }
  .footer-base_nav li a {
    font-size: 1.4rem;
  }
  .footer-link_list .f-logo.chizai {
    margin-top: 4px;
  }
  .footer-link_list .f-logo.law {
    margin-top: 2px;
  }
}

@media screen and (max-width: 500px) {
  body {
    line-height: 1.5;
  }
  .txt-shadow {
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
  }
  html {
    /* ルートのフォントサイズを10pxに設定しておく */
    font-size: 46.9%;
  }
  .loading-img {
    width: 160px;
  }
  .header-logo {
    width: 150px;
  }
  .header-left {
    padding-top: 12px;
  }
  .safari .header-nav_lists,
  .header-nav_lists {
    display: none;
  }
  .header-nav_sp {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px 0;
    margin-top: 82px;
    height: calc(100vh - 82px);
    background-color: rgba(0, 91, 172, 0.8);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    overflow-y: scroll;
  }
  .safari .header-nav_sp,
  .android .header-nav_sp {
    margin-top: 76px;
    height: calc(100vh - 76px);
  }
  .nav-open .header-nav_sp {
    opacity: 1;
    pointer-events: all;
  }
  .sp-nav_lists li {
    position: relative;
    padding: 0 50px;
  }
  .sp-nav_lists li a {
    padding: 10px 0;
    color: #fff;
    font-size: 1.8rem;
    display: block;
    margin-right: 50px;
  }
  .pager .page-numbers li {
    margin: 0 3px;
    width: 18px;
    height: 18px;
  }
  .accordion-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #fff;
    display: inline-block;
    position: absolute;
    right: 80px;
    top: 5px;
  }
  .accordion-btn::before {
    position: absolute;
    content: "";
    height: 9px;
    width: 1px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .accordion-btn::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 9px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .accordion-btn.active::before,
  .accordion-btn.active::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .child-nav {
    display: none;
  }
  .child-nav li {
    padding: 0 20px;
  }
  .selects {
    width: 100%;
  }
  .ttl-01 {
    font-size: 3.1rem;
    line-height: 1.2;
    padding-bottom: 2px;
  }
  .ttl-01::before {
    height: 1px;
    bottom: 1px;
  }
  .desc {
    padding: 30px 0;
  }
  .more-btn {
    margin-top: 20px;
    width: 162px;
  }
  .more-btn > span {
    height: 46px;
    padding-left: 2px;
  }
  .area-tag {
    width: 120px;
  }
  .link-bx {
    width: 18px;
    height: 18px;
    right: 6px;
  }
  .link-bx::after {
    width: 5px;
    height: 5px;
    top: 5px;
    left: 4px;
  }
  .link-blue .link-bx {
    right: 12px;
  }
  .hamburger {
    width: 60px;
    height: 54px;
  }
  .hamburger .font {
    bottom: 0px;
    right: 14px;
  }
  .hamburger-btn {
    top: -1px;
    right: 6px;
  }
  .hamburger-line {
    width: 30px;
  }
  .hamburger-line_2,
  .hamburger:hover .hamburger-line_2 {
    width: 24px;
  }
  .header-right {
    display: none;
  }
  .sp-no {
    display: none;
  }
  .sp-only {
    display: inline-block !important;
  }
  .android .mv-catch .catch-en,
  .android .ttl-01 {
    line-height: 1.2;
    padding-bottom: 6px;
  }
  .ttl-01,
  .ttl-ruby,
  .desc-head,
  .desc-txt {
    padding-left: 10px;
  }
  .desc-head {
    margin-top: 30px;
  }
  .office-features_number .odometer.odometer-auto-theme {
    margin-bottom: 4px;
  }
  .checkLogo {
    width: 24px;
    height: 23px;
    border: 2px solid #000000;
  }
  .checkLogo::after {
    top: 4px;
    border-top: 2px solid #005bac;
    border-right: 2px solid #005bac;
  }
  .flow_arrows {
    height: 60px;
  }
  .flow_arrow span {
    right: -5.5px;
    height: 10px;
    width: 12px;
  }
  .flow_arrow span:nth-child(2) {
    top: 7px;
  }
  .flow_arrow span:nth-child(3) {
    top: 21px;
  }
  .link-blue {
    height: 180px;
  }
  .link-bx.down::after {
    left: 5px;
    top: 4px;
  }
  .page-btn {
    width: 150px;
  }
  .page-btn span {
    height: 40px;
  }
  .page-btn.next {
    margin-right: 0;
    position: absolute;
    left: 50%;
  }
  .staff-thumb,
  .staff-thumb img {
    height: 220px;
  }
  .staff-desc dt {
    margin-top: 10px;
  }
  .contact-btn {
    width: 150px;
    padding: 8px 30px 8px 24px;
  }
  /*　フッター　*/
  .footer-link_logo .f-logo {
    width: 220px;
  }
  .footer-link_list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-contact .w-50 {
    width: 75%;
  }
  .footer-base {
    padding: 6px 0;
  }
  .footer-base_nav {
    padding: 4px 0;
  }
  .footer-base_nav li {
    text-align: center;
    width: auto;
  }
  .footer-base_nav li a {
    padding: 2px 10px;
  }
  .footer-contact {
    padding-bottom: 30px;
  }
  .android .footer-contact_tel_number {
    padding-top: 1px;
  }
  .footer-contact_tel_number {
    padding-left: 18px;
    padding-top: 2px;
  }
  .footer-contact_tel_number img {
    width: 14px;
  }
  .footer-contact_tel,
  .fl50:nth-child(2) .footer-contact_tel {
    padding-left: 8px;
  }
  .footer-base_col .small {
    padding: 8px;
  }
  .footer-link_list a,
  .footer-link_list .f-logo {
    height: 22px;
  }
  .footer-link_list .f-logo.chizai,
  .footer-link_list .f-logo.law {
    height: 19px;
    margin-top: 0;
  }
  .page-btns {
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 350px) {
  .sp-nav_lists li {
    padding: 0 26px;
  }
  .link-bx {
    height: 15px;
    width: 15px;
    right: 4px;
  }
  .link-bx::after {
    width: 4px;
    height: 4px;
    top: 4px;
    left: 3px;
  }
  .link-bx.down::after {
    left: 4px;
    top: 3px;
  }
}

.mw_wp_form {
  padding: 60px 0 100px;
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 40px 0 70px;
  }
}
/*# sourceMappingURL=common.min.css.map */
