@charset "UTF-8";
p,
a,
li,
address,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

mark {
  font-style: normal;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #1f1b1b;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
}
html body {
  overflow-x: hidden;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.roboto {
  font-family: "Roboto", noto sans jp, sans-serif;
}

.upper {
  text-transform: uppercase;
}

.kb-theme-content-width {
  width: 88.4%;
}

.cont {
  width: 88.4%;
  max-width: 1160px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

a {
  text-decoration: none;
}

.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

.none {
  display: none;
}

a {
  color: #1f1b1b;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

@media screen and (min-width: 1025px) {
  .header {
    position: sticky;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
  }
  .header .footer_contact_bottom {
    display: none;
  }
  .header .h_logo {
    height: 52px;
    margin-top: 3px;
  }
  .header .h_logo a,
  .header .h_logo img {
    display: block;
    width: auto;
    height: 100%;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 40px 0 103px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .header__inner {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .gnav {
    height: 100%;
  }
  .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .gnav ul {
    gap: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .gnav ul .ham_block {
    display: none;
  }
  .gnav ul li {
    position: relative;
  }
  .gnav ul li a {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    font-size: 1.5rem;
    display: block;
    padding: 5px 0 8px;
  }
  .gnav ul li a::before {
    content: "";
    width: 0;
    height: 2px;
    background: #0075b1;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
  .gnav ul li a:hover {
    opacity: 1;
  }
  .gnav ul li a:hover::before {
    width: 100%;
  }
  .gnav ul .menu_contact {
    margin-left: 5px;
  }
  .gnav ul .menu_contact a {
    background: #0075b1;
    border-radius: 100px;
    color: #fff;
    padding: 2px 10px 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnav ul .menu_contact a::before {
    content: none;
  }
  .gnav ul .menu_contact a:hover {
    background: #1f1b1b;
    color: #fff;
    opacity: 1;
  }
  .gnav ul .menu-item-has-children {
    padding-bottom: 20px;
    margin-bottom: -20px;
  }
  .gnav ul .menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% - 15px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #0075b1;
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
    padding: 20px 30px;
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
  .gnav ul .menu-item-has-children .sub-menu li {
    margin: 0;
  }
  .gnav ul .menu-item-has-children .sub-menu li a {
    font-size: 1.5rem;
    white-space: nowrap;
    color: #fff;
    min-width: 160px;
    position: relative;
    padding: 0;
  }
  .gnav ul .menu-item-has-children .sub-menu li a::before {
    content: none;
  }
  .gnav ul .menu-item-has-children .sub-menu li a::after {
    content: "";
    width: 12px;
    height: 5px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnav ul .menu-item-has-children .sub-menu li a:hover {
    opacity: 0.7;
  }
  .gnav ul .menu-item-has-children .sub-menu li a:hover::after {
    -webkit-transform: translateY(-50%) translateX(5px);
            transform: translateY(-50%) translateX(5px);
  }
  .gnav ul .menu-item-has-children:hover .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1024.9px) {
  .header {
    position: fixed;
    height: 64px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
  }
  .header .h_logo {
    width: 312px;
  }
  .header .h_logo img {
    width: 100%;
    display: block;
  }
  .header .header__inner {
    padding: 10px 13px 0 13px;
    height: 100%;
    background: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header .header-wrap {
    border-radius: 0;
    background: #f5f5f5;
    display: block;
    margin: 0;
    width: 100%;
    height: calc(100dvh - 64px);
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    padding: 16px 32px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 63px;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .gnav {
    display: block;
    margin-bottom: 30px;
  }
  .header .gnav ul {
    display: block;
  }
  .header .gnav a {
    padding: 24px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    border-bottom: solid 1px #bebebe;
  }
  .header .gnav a::before {
    content: "";
    width: 11px;
    min-width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #0075b1;
  }
  .header .gnav .menu-item-has-children {
    border-bottom: solid 1px #bebebe;
    padding-bottom: 24px;
  }
  .header .gnav .menu-item-has-children a {
    border: none;
    padding-bottom: 0;
    position: relative;
    padding-right: 20px;
  }
  .header .gnav .menu-item-has-children a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 28px;
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cline x1='0' y1='6.5' x2='13' y2='6.5' stroke='%23BEBEBE' stroke-width='1.5'/%3E%3Cline x1='6.5' y1='0' x2='6.5' y2='13' stroke='%23BEBEBE' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .header .gnav .menu-item-has-children.is-open a::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cline x1='0' y1='6.5' x2='13' y2='6.5' stroke='%23BEBEBE' stroke-width='1.5'/%3E%3C/svg%3E");
  }
  .header .gnav .menu-item-has-children .sub-menu {
    display: none;
    padding-top: 12px;
    padding-left: 26px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
  }
  .header .gnav .menu-item-has-children .sub-menu li {
    width: 50%;
    row-gap: 10px;
  }
  .header .gnav .menu-item-has-children .sub-menu a {
    padding: 0;
    font-size: 1.3rem;
    gap: 5px;
  }
  .header .gnav .menu-item-has-children .sub-menu a::after {
    display: none;
  }
  .header .gnav .menu-item-has-children .sub-menu a::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #1f1b1b;
  }
  .header .gnav .menu-item-has-children.is-open .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1024.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: fixed;
    top: 24px;
    right: 10px;
    z-index: 99;
    background: none;
    border: none;
    color: #fff;
    text-align: center;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 25px;
    height: 1px;
    background: #1f1b1b;
  }
  .hamburger__line {
    left: 0;
    top: 0;
  }
  .hamburger__line::before {
    content: "";
    top: 10px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 20px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 4px;
    -webkit-transform: translateY(6px) rotate(-35deg);
            transform: translateY(6px) rotate(-35deg);
    width: 27px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    width: 27px;
  }
  .header-wrap.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
.pankuzu {
  padding: 20px 0;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    padding: 10px 0;
  }
}
.pankuzu .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  line-height: 1.4615384615;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pankuzu .cont a,
.pankuzu .cont span {
  font-size: 1.3rem;
  display: block;
  font-weight: 400;
}
.pankuzu .cont a br,
.pankuzu .cont span br {
  display: none;
}
.pankuzu .cont .current-item {
  font-weight: 600;
}
.pankuzu .cont .bar::before {
  content: "";
  background: #1f1b1b;
  width: 8px;
  height: 1px;
  display: block;
}

.form {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 100%;
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding-bottom: 80px;
  }
}
.form .wpcf7-response-output {
  position: absolute;
}
.form .cont {
  width: 100%;
}
.form .check {
  color: #0075b1;
  display: inline-block;
  margin-left: 6px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form .check {
    font-size: 1.4rem;
  }
}
.form .ninni {
  color: #646464;
}
.form table {
  width: 100%;
  display: block;
  margin-bottom: 65px;
  padding-bottom: 420px;
}
@media screen and (max-width: 767.9px) {
  .form table {
    margin-bottom: 0;
    padding-bottom: 316px;
  }
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 26px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr {
    margin-bottom: 25px;
  }
}
.form table tr th,
.form table tr .zip_title {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr th,
  .form table tr .zip_title {
    margin-bottom: 5px;
  }
}
.form table tr th p,
.form table tr .zip_title p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .form table tr th p,
  .form table tr .zip_title p {
    font-size: 1.6rem;
  }
}
.form table tr label {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr label {
    margin-bottom: 4px;
  }
}
.form table tr label,
.form table tr .wpcf7-list-item-label {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .form table tr label,
  .form table tr .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
}
.form table tr .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form table tr td {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
.form table tr td br {
  display: none;
}
.form table tr td input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td textarea,
.form table tr td select {
  font-weight: 500;
  width: 100%;
  font-size: 1.6rem;
  border-radius: 8px;
  padding: 20px 40px;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  background: #f5f5f5;
  margin-left: 0;
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text],
  .form table tr td input[type=email],
  .form table tr td input[type=tel],
  .form table tr td textarea,
  .form table tr td select {
    padding: 8px 20px;
  }
}
.form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder, .form table tr td select::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder, .form table tr td select::-moz-placeholder {
  color: #bebebe;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder, .form table tr td select:-ms-input-placeholder {
  color: #bebebe;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder, .form table tr td select::-ms-input-placeholder {
  color: #bebebe;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]::placeholder,
.form table tr td input[type=email]::placeholder,
.form table tr td input[type=tel]::placeholder,
.form table tr td textarea::placeholder,
.form table tr td select::placeholder {
  color: #bebebe;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder, .form table tr td select::-webkit-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder, .form table tr td select::-moz-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder, .form table tr td select:-ms-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder, .form table tr td select::-ms-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::placeholder,
  .form table tr td input[type=email]::placeholder,
  .form table tr td input[type=tel]::placeholder,
  .form table tr td textarea::placeholder,
  .form table tr td select::placeholder {
    font-size: 1.5rem;
  }
}
.form table tr td textarea {
  height: 164px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr td textarea {
    height: 170px;
  }
}
.form table tr td .zip_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form table tr td .zip_wrap::before {
  content: "〒";
  margin-right: 13px;
  font-size: 1.6rem;
  font-weight: 500;
}
.form table tr td .zip_wrap input {
  width: 240px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap input {
    width: 100%;
  }
}
.form table tr td .city_wrap textarea {
  height: 64px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .city_wrap textarea {
    height: 39px;
  }
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 30px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox {
    gap: 3px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form table tr td .wpcf7-checkbox span {
  font-weight: 500;
}
.form table tr .sp-none {
  display: inline;
}
@media screen and (max-width: 767.9px) {
  .form table tr .sp-none {
    display: none;
  }
}
.form table tr .sp-block {
  font-size: 1.3rem;
}
.form table tr .address_wrap textarea {
  height: 60px;
}
@media screen and (max-width: 767.9px) {
  .form table tr .address_wrap textarea {
    height: 48px;
  }
}
.form tr.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
.form tr.flex-top th {
  width: 100%;
}
.form tr.flex-top td {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767.9px) {
  .form tr.flex-top td {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .form tr.flex-top td:last-child {
    margin-top: 15px;
  }
}
.form tr.flex-top td div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.form tr.flex-top td div p label {
  min-width: 34px;
}
.form tr.flex-top td div p .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form .wpcf7-not-valid-tip {
  position: absolute;
}
.form input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 8px;
  background: #fff;
  border-radius: 4px;
  padding: 0;
}
.form .wpcf7-list-item {
  margin-left: 0;
}
.form .wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-bottom: 60px;
  }
}
.form .privacy_policy_check .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-wrap: nowrap;
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check label,
.form .privacy_policy_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check a,
.form .privacy_policy_check p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a,
  .form .privacy_policy_check p {
    font-size: 1.6rem;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  vertical-align: middle;
}
.form .wpcf7-response-output {
  font-size: 1.5rem;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 300px;
  height: 55px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .form p.submit {
    width: 263px;
  }
}
.form p.submit::after {
  content: "";
  width: 25px;
  height: auto;
  aspect-ratio: 25/10;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  cursor: pointer;
  background: #0075b1;
  color: #fff;
  width: 100%;
  height: 100%;
  border: solid 2px #0075b1;
  font-weight: 600;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}
.form p.submit:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
}
.form p.submit:hover input {
  background: #fff;
  color: #0075b1;
}
.form p.submit2 {
  margin-top: 20px;
}

.page-id-15 .form table,
.page-id-880 .form table {
  padding-bottom: 0;
}

.privacypolicy_cont {
  position: absolute;
  bottom: 320px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont {
    bottom: 248px;
  }
}
.privacypolicy_cont h2 {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 10px;
}
.privacypolicy_cont .privacypolicy_content_wrap {
  background: #f6f6f8;
  overflow: hidden;
  padding: 20px 70px 27px 40px;
  padding-right: 8px;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont .privacypolicy_content_wrap {
    padding: 20px 0 20px 20px;
  }
}
.privacypolicy_cont .privacypolicy_content {
  height: 263px;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 40px solid #f6f6f8;
  padding-right: 40px;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont .privacypolicy_content {
    padding-right: 20px;
    height: 196px;
    padding-right: 20px;
    border-right: 10px solid #f6f6f8;
  }
}
.privacypolicy_cont .privacypolicy_content::-webkit-scrollbar {
  width: 2px;
  background: #fff;
}
.privacypolicy_cont .privacypolicy_content::-webkit-scrollbar-thumb {
  background-color: #bebebe;
}
.privacypolicy_cont .privacypolicy_content::-webkit-scrollbar-track {
  margin: 0 32px;
}
.privacypolicy_cont .privacypolicy_content p {
  line-height: 2;
}

.thanks_wrap p {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap p {
    margin-bottom: 50px;
  }
}

.swiper-slide {
  width: 100%;
}
.swiper-slide img {
  width: 100%;
}

.page_top {
  height: 550px;
  position: relative;
}
@media screen and (max-width: 1024.9px) {
  .page_top {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top {
    height: auto;
    aspect-ratio: 375/200;
  }
}
.page_top img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
.page_top .cont {
  padding-top: 87px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    padding-top: 22px;
    padding-right: 20px;
  }
}
.page_top .page_title {
  font-size: 2.8rem;
  font-weight: 700;
  background: #fff;
  padding: 12px 0px 5px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-left: auto;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title {
    font-size: 1.8rem;
    padding: 10px 2px 8px;
  }
}

.page-id-286 .page_top .page_title,
.page-id-288 .page_top .page_title {
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767.9px) {
  .page-id-286 .page_top .page_title,
  .page-id-288 .page_top .page_title {
    letter-spacing: 0.1em;
  }
}

.business_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.business_list::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #0075b1;
}
@media screen and (max-width: 767.9px) {
  .business_list::before {
    width: 20px;
  }
}

.works-wrapper {
  gap: 80px 55px;
}
@media screen and (max-width: 767.9px) {
  .works-wrapper {
    gap: 30px;
  }
}

.works-item {
  width: calc((100% - 110px) / 3);
}
@media screen and (max-width: 767.9px) {
  .works-item {
    width: 100%;
  }
}

.works-thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 350/250;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .works-thumbnail {
    aspect-ratio: 331/220;
  }
}
.works-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.works-thumbnail .no-image {
  background: #f5f5f5;
  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;
  color: #999;
  font-size: 1.4rem;
}
.works-thumbnail .no-image-placeholder {
  background: #f5f5f5;
  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;
  color: #999;
  font-size: 1.4rem;
  height: 100%;
}
.works-thumbnail .no-image-placeholder span {
  color: #ccc;
  font-weight: 500;
}

.works-category {
  color: #0075b1;
  border: solid 2px #0075b1;
  padding: 4px 8px;
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .works-category {
    font-size: 1.5rem;
    padding: 1px 10px;
  }
}

.works-title {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .works-title {
    font-size: 1.8rem;
  }
}

.heading1::before {
  content: "";
  width: 30px;
  height: 3px;
  background: #0075b1;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .heading1::before {
    width: 20px;
  }
}

.footer {
  background-image: url(../img/footer_bg-2.jpg);
  background-size: cover;
  background-position: top;
  padding-top: 375px;
  padding-bottom: 85px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .footer {
    background-image: none;
    padding-top: 0;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact {
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .footer .footer_contact::before {
    content: "";
    width: 100vw;
    height: 100%;
    background-image: url(../img/footer_bg_sp-2.jpg);
    background-size: cover;
    background-position: top;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}
@media screen and (max-width: 767.9px) {
  .footer .footer_contact {
    padding-top: 50px;
  }
}
@media screen and (max-width: 430px) {
  .footer .footer_contact::before {
    background-image: url(../img/footer_bg_sp-2.jpg);
    background-position: center;
  }
}
.footer .footer_contact_top {
  gap: 30px;
  margin-bottom: 145px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
    margin-bottom: 60px;
  }
}
.footer .footer_contact_top_left p {
  font-size: 12rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  padding-top: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top_left p {
    font-size: 6.4rem;
    margin-bottom: 0;
  }
}
.footer .footer_contact_top_left h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top_left h2 {
    margin-top: 5px;
  }
}
.footer .footer_contact_top_right {
  padding-right: 140px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -20px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top_right {
    margin-top: 0;
  }
}
.footer .footer_contact_top_right p {
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top_right p {
    font-size: 1.4rem;
  }
  .footer .footer_contact_top_right p br {
    display: none;
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact_top_right {
    padding-right: 0;
  }
}
.footer .footer_contact {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_contact {
    margin-bottom: 0;
  }
}
.footer .footer_nav {
  gap: 30px 50px;
  margin-bottom: 58px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.footer .footer_nav .footer__logo {
  width: 473px;
  max-width: 100%;
}
@media (max-width: 1150px) {
  .footer .footer_nav .footer__logo {
    width: 380px;
  }
}
.footer .footer_nav .footer__logo a,
.footer .footer_nav .footer__logo img {
  display: block;
}
.footer .footer_nav .footer__logo a {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav .footer__logo a {
    width: 292px;
  }
}
.footer .footer_nav .footer__logo img {
  width: 100%;
}
.footer .footer_nav address {
  font-style: normal;
  display: block;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav address {
    color: #1f1b1b;
    margin-bottom: 5px;
  }
}
.footer .footer_nav p {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav p {
    color: #1f1b1b;
  }
}
.footer .footer_nav .fnav {
  margin-top: 20px;
  margin-right: -20px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav .fnav {
    margin: 0;
    width: 100%;
    margin-left: 22px;
  }
}
.footer .footer_nav .fnav ul {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_nav .fnav ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.footer .footer_nav .fnav ul li {
  color: #fff;
  list-style: disc;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav .fnav ul li {
    color: #1f1b1b;
  }
}
.footer .footer_nav .fnav ul > li:nth-child(5) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav .fnav ul > li:nth-child(5) {
    margin: 0;
  }
}
.footer .footer_nav .fnav ul a {
  color: #fff;
  display: block;
  padding-bottom: 6px;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .footer .footer_nav .fnav ul a {
    color: #1f1b1b;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.footer .footer_bottom {
  border-top: solid 1px #fff;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer .footer_bottom {
    border: none;
    padding-top: 0;
  }
}
.footer .footer_bottom small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_bottom small {
    color: #1f1b1b;
    font-size: 1.1rem;
    display: block;
    line-height: 2;
  }
}
.footer .footer_bottom a {
  color: #fff;
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_bottom a {
    color: #1f1b1b;
    display: block;
    padding-bottom: 10px;
    border-bottom: solid 1px #1f1b1b;
    margin-bottom: 10px;
    position: static;
    top: unset;
  }
}

.footer_contact_bottom {
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.footer_contact_bottom .inner {
  background: #fff;
  width: calc((100% - 44px) / 3);
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 0 20px 35px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .inner {
    width: 306px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 18px 29px 7px 0;
    min-height: 114px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer_contact_bottom .inner p {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .inner p {
    font-size: 1.4rem;
    text-align: left;
  }
}
.footer_contact_bottom .inner span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .inner span {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: left;
  }
}
.footer_contact_bottom .inner span br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .inner span br {
    display: block;
  }
}
.footer_contact_bottom .inner img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .inner .contact_btn a {
    min-width: 183px;
    font-size: 1.2rem;
    padding: 8px 20px;
    height: 36px;
    text-align: left;
  }
  .footer_contact_bottom .inner .contact_btn a::after {
    right: 15px;
  }
}
.footer_contact_bottom .tel img {
  width: 42px;
  padding-top: 70px;
  margin-bottom: 22px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .tel img {
    width: 26px;
    margin: 0 39px 15px 29px;
    padding: 0;
  }
}
.footer_contact_bottom .tel a {
  display: block;
  text-align: center;
  font-size: 3.8rem;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .tel a {
    font-size: 2.5rem;
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .mail {
    padding-bottom: 0;
  }
}
.footer_contact_bottom .mail img {
  width: 70px;
  padding-top: 60px;
  margin-bottom: 23px;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .mail img {
    width: 46px;
    margin: 0 24px 22px;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .mail .detail {
    margin-bottom: 22px;
  }
}
.footer_contact_bottom .mail p {
  margin-bottom: 17px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .mail p {
    margin-bottom: 13px;
  }
}
.footer_contact_bottom .entry img {
  width: 62px;
  padding-top: 63px;
  margin-bottom: 23px;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .entry img {
    width: 44px;
    margin: 0 26px 0 24px;
    padding: 0;
  }
}
.footer_contact_bottom .entry p {
  margin-bottom: 17px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .entry p {
    margin-bottom: 8px;
  }
}
.footer_contact_bottom .entry .contact_btn {
  margin-bottom: 7px;
}
@media screen and (max-width: 1024px) {
  .footer_contact_bottom .entry .contact_btn {
    margin-bottom: 9px;
  }
}

.contact_btn a {
  display: block;
  border-radius: 100px;
  background: #1f1b1b;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 246px;
  margin: 0 auto;
  max-width: 100%;
  height: 50px;
  text-align: center;
  padding: 12px 20px 14px;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_btn a:hover {
  background: #0075b1;
  opacity: 1;
}
.contact_btn a::after {
  content: "";
  width: 12px;
  height: 5px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
}

.kt-blocks-accordion-header {
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .kt-blocks-accordion-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.kt-blocks-accordion-icon-trigger::before, .kt-blocks-accordion-icon-trigger::after {
  width: 25px !important;
  height: 3px !important;
}

.kt-accordion-id288_67860b-89 .wp-block-kadence-pane .kt-accordion-header-wrap .kt-blocks-accordion-header span,
.kt-blocks-accordion-title span {
  font-size: 2rem;
}

@media screen and (max-width: 767.9px) {
  .kb-image290_dc431e-2d {
    width: 106px;
    padding-left: 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media screen and (max-width: 767.9px) {
  .kb-image290_270314-9a {
    width: 117px;
    padding-left: 10px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-top: 7px;
  }
}

.single_works_wrapper {
  padding-top: 60px;
  padding-bottom: 215px;
}
.single_works_wrapper .cont {
  max-width: 920px;
}
.single_works_wrapper .works-categories {
  margin-bottom: 44px;
}
.single_works_wrapper .works-category {
  font-size: 2rem;
}
.single_works_wrapper h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 50px;
}
.single_works_wrapper .works-img1 {
  margin-bottom: 76px;
}
.single_works_wrapper .works-img1 img {
  display: block;
  width: 100%;
}
.single_works_wrapper table {
  display: block;
  margin-bottom: 100px;
}
.single_works_wrapper table tbody {
  display: block;
}
.single_works_wrapper table tr {
  border-bottom: solid 1px #bebebe;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single_works_wrapper table th,
.single_works_wrapper table td {
  font-size: 1.8rem;
  line-height: 2;
}
.single_works_wrapper table th {
  width: 160px;
  font-weight: 600;
}
.single_works_wrapper .sub_imgs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 160px;
  gap: 40px;
}
.single_works_wrapper .sub_imgs .sub_img {
  width: calc((100% - 40px) / 2);
  height: auto;
  aspect-ratio: 440/280;
}
.single_works_wrapper .sub_imgs .sub_img img {
  display: block;
  width: 100%;
  height: 100%;
}

.more_btn1 a,
.block_more_btn1 {
  background: #0075b1 !important;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 5px !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  margin: 0 auto;
  max-width: 100%;
  height: 55px;
  text-align: center;
  padding: 10px 20px;
  position: relative;
  border: solid 2px #0075b1 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .more_btn1 a,
  .block_more_btn1 {
    min-width: 263px;
  }
}
.more_btn1 a span,
.block_more_btn1 span {
  font-weight: 600;
  font-size: 1.8rem;
}
.more_btn1 a::after,
.block_more_btn1::after {
  content: "";
  width: 25px;
  height: auto;
  aspect-ratio: 25/10;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .more_btn1 a::after,
  .block_more_btn1::after {
    right: 6px;
  }
}
.more_btn1 a:hover,
.block_more_btn1:hover {
  background: #fff !important;
  color: #0075b1 !important;
  opacity: 1;
}
.more_btn1 a:hover::after,
.block_more_btn1:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
}

.page_top2 {
  background: #fff;
}
@media screen and (max-width: 1024.9px) {
  .page_top2 {
    margin-top: 64px;
  }
}
.page_top2 .page_title {
  padding-top: 90px;
  font-weight: 500;
  padding-left: 10px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .page_title {
    padding-top: 30px;
    padding-left: 10px;
    margin-bottom: 30px;
  }
}
.page_top2 .page_title span {
  display: block;
  font-size: 12rem;
  color: #f6f6f8;
  line-height: 1;
  margin-bottom: 24px;
  margin-left: -10px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .page_title span {
    font-size: 6.4rem;
    margin-left: -10px;
    margin-bottom: 8px;
  }
}
.page_top2 .pankuzu {
  padding-top: 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .pankuzu {
    padding-bottom: 54px;
  }
}

.more_btn2 a {
  position: relative;
  padding: 3px 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 38px;
  font-size: 1.6rem;
  width: 124px;
}
.more_btn2 a::before {
  content: "";
  width: calc(100% - 29px);
  height: 1px;
  background: #1f1b1b;
  position: absolute;
  bottom: 1px;
  right: 29px;
  z-index: 2;
}
.more_btn2 a span {
  width: 38px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.more_btn2 a span::before {
  content: "";
  width: 38px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #0075b1;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.more_btn2 a span::after {
  content: "";
  width: 10px;
  height: auto;
  aspect-ratio: 13/5;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.more_btn2 a:hover {
  opacity: 1;
}
.more_btn2 a:hover::before {
  -webkit-animation: lineHover 0.6s ease forwards;
          animation: lineHover 0.6s ease forwards;
}
.more_btn2 a:hover span::before {
  -webkit-transform: translateY(-50%) scale(0.8125);
          transform: translateY(-50%) scale(0.8125);
}

.interview_content {
  background: #f6f6f8;
  padding: 100px 0;
}
@media screen and (max-width: 767.9px) {
  .interview_content {
    padding: 60px 0;
  }
}
.interview_content:nth-child(even) {
  background: #fff;
}
.interview_content .cont {
  padding-left: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .interview_content .cont {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interview_content .detail {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .detail {
    display: contents;
  }
}
.interview_content .detail .no {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0075b1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .detail .no {
    font-size: 2rem;
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.interview_content .detail .no span {
  font-size: 4.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .interview_content .detail .no span {
    font-size: 3.2rem;
  }
}
.interview_content .detail .name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .detail .name {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.interview_content .detail .flex {
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .detail .flex {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 20px;
  }
}
.interview_content .inner {
  gap: 70px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .inner {
    display: contents;
  }
}
.interview_content .inner h2 {
  margin-bottom: 15px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .interview_content .inner h2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
}
.interview_content .inner p {
  line-height: 2;
}
.interview_content .inner .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .interview_content .inner .text {
    display: contents;
  }
  .interview_content .inner .text p {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    font-size: 1.5rem;
  }
}
.interview_content .img {
  width: 43.4%;
  height: auto;
  aspect-ratio: 477/381;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .interview_content .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-bottom: 15px;
    aspect-ratio: 331/220;
  }
}
.interview_content .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.certified-personnel-table th,
.certified-personnel-table td {
  font-size: 1.7rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.page-id-286,
.page-id-290 {
  background: #f4f4f4;
}

.business_content_wrapper {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .business_content_wrapper {
    overflow: unset;
  }
}

@media screen and (max-width: 767.9px) {
  .kt-adv-heading286_b57b70-a3 {
    font-size: 17vw !important;
  }
}

.business_content {
  position: relative;
}
.business_content::before {
  content: "";
  margin-right: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% - 150px);
  background: #fff;
  position: absolute;
  top: 150px;
  left: 0;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767.9px) {
  .business_content::before {
    display: none;
  }
}

.business_content_wrapper.left .business_content::before {
  border-radius: 0 10px 10px 0;
  right: 0;
  left: auto;
  margin-right: auto;
  margin-left: calc(50% - 50vw);
}

.business_content_heading {
  min-width: 223px;
}
@media screen and (max-width: 767.9px) {
  .business_content_heading {
    min-width: 143px;
  }
}

.profile_table table {
  border-top: solid 1px #bebebe;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.profile_table th,
.profile_table td {
  border: none !important;
  line-height: 2;
  font-size: 1.8rem;
  padding: 24px 0 !important;
}
@media screen and (max-width: 767.9px) {
  .profile_table th,
  .profile_table td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .profile_table th {
    padding: 20px 0 8px !important;
  }
}
.profile_table td P {
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .profile_table td P {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .profile_table td {
    padding: 0 0 20px !important;
  }
  .profile_table td p {
    margin-bottom: 8px;
  }
  .profile_table td p:last-child {
    margin-bottom: 0;
  }
  .profile_table td p.sp-block {
    font-weight: 700;
    margin-top: -10px;
  }
}
.profile_table tr {
  border-bottom: solid 1px #bebebe;
}
.application-entry th {
  min-width: 160px;
}
@media screen and (max-width: 767.9px) {
  .application-entry th {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .application-entry td {
    width: 100%;
    display: block;
  }
}

/*流れるテキスト*/
.loop-wrap {
  margin-top: 25px;
  width: 100vw;
  overflow: hidden;
  left: 0;
  z-index: 1;
  height: 108px;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap {
    height: 57px;
    margin-top: 25px;
  }
}
.loop-wrap div,
.loop-wrap img {
  width: auto;
  height: auto;
}
.loop-wrap .loop-wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -220px;
}
.loop-wrap figure {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 30px;
}
.loop-wrap figure img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 108px;
  width: auto;
  aspect-ratio: 2014/108;
  max-width: unset !important;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap figure img {
    height: 57px;
  }
}
.loop-wrap figure:nth-child(1) {
  -webkit-animation: MoveLeft 84s -42s infinite linear;
          animation: MoveLeft 84s -42s infinite linear;
}
.loop-wrap figure:nth-child(2) {
  -webkit-animation: MoveLeft2 84s infinite linear;
          animation: MoveLeft2 84s infinite linear;
}

/*流れるテキスト*/
@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@media screen and (max-width: 767.9px) {
  .kb-image290_7be67f-47 img {
    aspect-ratio: 33/35;
  }
}

.recruit_contents {
  overflow-x: clip;
}
.recruit_contents .content1_flex img {
  height: auto;
  aspect-ratio: 38/27;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents aside {
    margin-left: -5.8% !important;
  }
}
.recruit_contents .menu__nav {
  margin-left: 18px;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .menu__nav {
    margin-left: 16px;
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_contents .menu__nav li {
    margin-bottom: 10px;
  }
}
.recruit_contents .menu__nav a {
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .menu__nav a {
    font-size: 1.4rem;
  }
}
.recruit_contents .menu__nav a::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0075b1;
  position: absolute;
  left: -18px;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #0075b1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.recruit_contents .menu__nav a::after {
  content: "";
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6px;
  height: 4px;
  position: absolute;
  left: -16px;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.recruit_contents .menu__nav a.is-active::before {
  opacity: 1;
}
.recruit_contents .menu__nav a.is-active::after {
  opacity: 1;
}
.recruit_contents #content2,
.recruit_contents #content5 {
  -o-border-image: linear-gradient(white 0 0) 0//0 100vi;
     border-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white)) fill 0//0 100vi;
     border-image: linear-gradient(white 0 0) fill 0//0 100vi;
}
.recruit_contents .swiper-recruit {
  position: relative;
  overflow-x: hidden;
  margin-right: calc(50% - 50vw + 135px);
  padding-top: 133px;
  margin-top: -133px;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .swiper-recruit {
    margin-right: calc(50% - 50vw);
    padding-top: 100px;
    margin-top: 0;
  }
}
.recruit_contents .swiper-recruit .swiper-slide {
  width: 100%;
  max-width: 580px;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .swiper-recruit .swiper-slide {
    width: 331px;
    max-width: 100%;
  }
}
.recruit_contents .swiper-recruit .img {
  position: relative;
  height: auto;
  aspect-ratio: 580/370;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .swiper-recruit .img {
    margin-bottom: 15px;
    aspect-ratio: 331/220;
  }
}
.recruit_contents .swiper-recruit .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}
.recruit_contents .swiper-recruit .img .name_en {
  font-size: 4.8rem;
  font-weight: 600;
  position: absolute;
  bottom: -29px;
  left: 10px;
}
.recruit_contents .swiper-recruit .img h3 {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .swiper-recruit .img h3 {
    gap: 6px;
    right: 15px;
    bottom: 15px;
  }
}
.recruit_contents .swiper-recruit .img h3 span {
  background: #fff;
  font-size: 2rem;
  line-height: 1.5;
  padding: 0 6px;
  padding-top: 2px;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .swiper-recruit .img h3 span {
    font-size: 1.8rem;
  }
}
.recruit_contents .swiper-recruit .detail {
  margin-left: 10px;
}
.recruit_contents .swiper-recruit .name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.recruit_contents .swiper-recruit .swiper-button-next,
.recruit_contents .swiper-recruit .swiper-button-prev {
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: #0075b1;
  border-radius: 50%;
  position: absolute;
  top: 33px;
  left: auto;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .swiper-recruit .swiper-button-next,
  .recruit_contents .swiper-recruit .swiper-button-prev {
    top: 37px;
  }
}
.recruit_contents .swiper-recruit .swiper-button-next::after,
.recruit_contents .swiper-recruit .swiper-button-prev::after {
  content: "";
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recruit_contents .swiper-recruit .swiper-button-next {
  right: 103px;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .swiper-recruit .swiper-button-next {
    right: 22px;
  }
}
.recruit_contents .swiper-recruit .swiper-button-next:hover::after {
  -webkit-transform: translate(calc(-50% + 5px), -50%);
          transform: translate(calc(-50% + 5px), -50%);
}
.recruit_contents .swiper-recruit .swiper-button-prev {
  right: 166px;
}
@media screen and (max-width: 1024px) {
  .recruit_contents .swiper-recruit .swiper-button-prev {
    right: 88px;
  }
}
.recruit_contents .swiper-recruit .swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.recruit_contents .swiper-recruit .swiper-button-prev:hover::after {
  -webkit-transform: translate(calc(-50% - 5px), -50%) rotate(180deg);
          transform: translate(calc(-50% - 5px), -50%) rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .recruit_contents .kadence-column290_96e51b-34 .wp-block-kadence-column {
    max-width: 100%;
    width: 500px;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .kadence-column290_45eb8f-37 .wp-block-kadence-column {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 calc(50% - 10.5px) !important;
            flex: 0 1 calc(50% - 10.5px) !important;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .faq_accordion {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.recruit_contents .faq_accordion .wp-block-kadence-pane {
  border-radius: 5px;
  overflow: hidden;
}
.recruit_contents .faq_accordion .kt-blocks-accordion-header {
  position: relative;
}
.recruit_contents .faq_accordion .kt-blocks-accordion-header::before {
  content: "";
  width: 32px;
  height: 32px;
  background: #0075b1;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 15px;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .faq_accordion .kt-blocks-accordion-header::before {
    top: 20px;
    left: 22px;
    width: 25px;
    height: 25px;
  }
}
.recruit_contents .faq_accordion .kt-blocks-accordion-header::after {
  content: "Q";
  font-family: "Roboto", noto sans jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 19px;
  left: 25px;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .faq_accordion .kt-blocks-accordion-header::after {
    font-size: 1.4rem;
    top: 22px;
    left: 29px;
  }
}
.recruit_contents .faq_accordion .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger::before, .recruit_contents .faq_accordion .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger::after {
  width: 16px !important;
  height: 2px !important;
}
@media screen and (max-width: 767.9px) {
  .recruit_contents .faq_accordion .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger::before, .recruit_contents .faq_accordion .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger::after {
    width: 13px !important;
  }
}
.recruit_contents #content6 .blog_list {
  margin-bottom: 0;
}
.recruit_contents .entry_form table tr td input[type=text],
.recruit_contents .entry_form table tr td input[type=email],
.recruit_contents .entry_form table tr td input[type=tel],
.recruit_contents .entry_form table tr td textarea,
.recruit_contents .entry_form table tr td select {
  background: #fff;
}
.recruit_contents .entry_form table tr td select {
  width: 173px;
}
.recruit_contents .entry_form .birthday p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}
.recruit_contents .entry_form .birthday p select::-ms-expand {
  display: none; /* デフォルトの矢印を無効(IE用) */
}
.recruit_contents .entry_form .birthday p select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を無効 */
  background-image: url(../img/arrow_down.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.recruit_contents .entry_form .privacypolicy_content_wrap {
  background: #fff;
}
.recruit_contents .entry_form .privacypolicy_content_wrap .privacypolicy_content {
  border-color: #fff;
}
.recruit_contents .entry_form .privacypolicy_content_wrap .privacypolicy_content::-webkit-scrollbar {
  width: 2px;
  background: #f4f4f4;
}

.sticky_img {
  position: sticky;
  top: 82px;
  left: 0;
  z-index: -1;
  aspect-ratio: 1366/600;
}
@media screen and (max-width: 767.9px) {
  .sticky_img {
    top: 64px;
    aspect-ratio: 375/200;
  }
}
.sticky_img img {
  width: 100%;
  height: 100%;
}
.sticky_img figure {
  display: contents;
}

.page_news {
  background: #f6f6f8;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .page_news {
    padding: 50px 0 80px;
  }
}
.page_news .cont {
  max-width: 966px;
}
.page_news .page_news-wrap {
  gap: 112px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_news .page_news-wrap {
    gap: 45px;
    margin-bottom: 60px;
  }
}
.page_news .news_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px 17px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page_news .news_category a,
.page_news .news_category li {
  font-weight: 600;
  background: #fff;
  padding: 3px 28px 3px 26px;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_category a,
  .page_news .news_category li {
    width: calc(50% - 8.5px);
  }
}
.page_news .news_category a:hover, .page_news .news_category a.current,
.page_news .news_category li:hover,
.page_news .news_category li.current {
  background: #0075b1;
  color: #fff;
}
.page_news .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .page_news .right {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.page_news .news_list {
  border-top: solid 1px #bebebe;
}
.page_news .news_list a {
  padding: 20px 30px 20px 0;
  border-bottom: solid 1px #bebebe;
  gap: 24px;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a {
    padding: 24px 0 25px;
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page_news .news_list a span {
  width: 32px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #0075b1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a span {
    display: none;
  }
}
.page_news .news_list a span::after {
  content: "";
  width: 15px;
  height: auto;
  aspect-ratio: 15.16/6.74;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_news .news_list a:hover {
  opacity: 1;
}
.page_news .news_list a:hover span::after {
  right: 0;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_news .news_list a img {
  width: 150px;
  height: auto;
  aspect-ratio: 150/100;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a img {
    width: 112px;
    aspect-ratio: 112/80;
  }
}
.page_news .news_list a .news_title_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page_news .news_list a .news_title_wrap .flex {
  gap: 25px;
  margin-left: 5px;
  margin-bottom: 9px;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a .news_title_wrap .flex {
    gap: 5px 10px;
    margin-left: 0;
    margin-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 5px;
  }
}
.page_news .news_list a time {
  font-weight: 400;
  width: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a time {
    min-width: 90px;
  }
}
.page_news .news_list a .post_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.page_news .news_list a .post_category p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0075b1;
  border: solid 1px #0075b1;
  padding: 0 8px;
  line-height: 1.6153846154;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a .post_category p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 10px;
  }
}
.page_news .news_list a .news_title {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_news .news_list a .news_title {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.pagenation span,
.pagenation a {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagenation a:hover {
  background: #0075b1;
  color: #fff;
}
.pagenation .current {
  background: #0075b1;
  color: #fff;
}
.pagenation .prev,
.pagenation .next {
  margin: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .pagenation .prev,
  .pagenation .next {
    margin: 0;
  }
}
.pagenation .prev::after,
.pagenation .next::after {
  content: "";
  width: 16px;
  height: auto;
  aspect-ratio: 15.75/7;
  background-image: url(../img/arrow.svg);
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(93%) contrast(101%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pagenation .prev::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.news_single_wrapper {
  padding-top: 120px;
  padding-bottom: 160px;
  background: #f6f6f8;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.news_single_wrapper .cont {
  max-width: 866px;
}
.news_single_wrapper .news_top {
  gap: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper .news_top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 35px;
    margin-bottom: 15px;
  }
}
.news_single_wrapper time {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper time {
    font-size: 1.4rem;
  }
}
.news_single_wrapper .news_category {
  gap: 10px;
}
.news_single_wrapper .news_category p {
  color: #0075b1;
  border: solid 1px #0075b1;
  padding: 0 8px 1px;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper .news_category p {
    font-size: 1.3rem;
    padding: 0 10px;
  }
}
.news_single_wrapper .news_single_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper .news_single_title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.news_single_wrapper .news_single_content {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .news_single_wrapper .news_single_content {
    margin-bottom: 50px;
  }
}
.news_single_wrapper .news_single_content p {
  line-height: 2;
  font-size: 1.6rem;
}
.news_single_wrapper .news_single_content a {
  text-decoration: underline;
  font-size: 1.6rem;
}
.transaction-list .transaction-year__title {
  color: #0075b1;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .transaction-list .transaction-year__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.works_table {
  background: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .works_table {
    display: block;
    border: solid 1px #bebebe;
    border-bottom: none;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .works_table thead,
  .works_table tbody {
    display: block;
  }
}
.works_table table,
.works_table td,
.works_table tr,
.works_table th {
  border-color: #bebebe;
}
.works_table th {
  background-color: #e6f2f8;
  font-size: 1.8rem;
  padding: 18px 20px 17px;
  line-height: 2;
  font-weight: 600;
  text-align: center;
  border: solid 1px #bebebe;
}
@media screen and (max-width: 767.9px) {
  .works_table th {
    border: none;
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .works_table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.works_table td {
  padding: 14px 30px;
  border: solid 1px #bebebe;
}
@media screen and (max-width: 767.9px) {
  .works_table td {
    border: none;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .works_table thead th:nth-child(1) {
    width: 34%;
    border-right: solid 1px #bebebe;
  }
  .works_table thead th:nth-child(2) {
    width: 33%;
    border-right: solid 1px #bebebe;
  }
  .works_table thead th:nth-child(3) {
    width: 33%;
  }
}
.works_table tbody td {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .works_table tbody td {
    font-size: 1.1rem;
  }
  .works_table tbody td br {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .works_table tbody tr {
    border-bottom: solid 1px #bebebe;
  }
}
.works_table tbody td:first-child {
  font-size: 1.5rem;
  width: 43.5%;
}
@media screen and (max-width: 767.9px) {
  .works_table tbody td:first-child {
    font-size: 1.1rem;
    line-height: 1.5;
    width: 34%;
    border-right: solid 1px #bebebe;
  }
}
.works_table tbody td:nth-child(2) {
  width: 32.9%;
}
@media screen and (max-width: 767.9px) {
  .works_table tbody td:nth-child(2) {
    width: 33%;
    border-right: solid 1px #bebebe;
  }
}

@media screen and (max-width: 767.9px) {
  tbody td:nth-child(3) {
    width: 33%;
  }
}

tbody .transaction-table__category td:first-child {
  font-size: 1.8rem;
  padding: 18px 20px 17px;
  font-weight: 600;
  line-height: 2;
  background: #0075b1;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  tbody .transaction-table__category td:first-child {
    font-size: 1.6rem;
    padding: 5px 20px;
    border-bottom: none !important;
    width: 100%;
  }
}

.transaction-year--accordion {
  margin-bottom: 36px;
}
@media screen and (max-width: 767.9px) {
  .transaction-year--accordion {
    margin-bottom: 20px;
  }
}

.transaction-year__toggle {
  background: #fff;
  width: 100%;
  padding: 20px 100px 20px 30px;
  color: #0075b1;
  border: solid 2px #0075b1;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .transaction-year__toggle {
    font-size: 1.8rem;
    padding: 12px 25px;
  }
}
.transaction-year__toggle::before, .transaction-year__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 24px;
  height: 3px;
  background: #0075b1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .transaction-year__toggle::before, .transaction-year__toggle::after {
    width: 18px;
    height: 2px;
    right: 18px;
  }
}
.transaction-year__toggle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.transaction-year__toggle[aria-expanded=true]::after {
  opacity: 0;
}

.transaction-year__panel {
  padding-top: 40px;
}

.policy-swiper_wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.policy-swiper_wrapper .policy-swiper-inner {
  width: 41.4%;
  min-width: 300px;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  position: sticky;
  top: 70px;
  max-height: 647px;
}
.kadence-column280_3e419e-90 {
  width: calc(58.6% - 30px);
}

.kb-row-layout-id280_13fc29-10 > .kt-row-column-wrap,
.kb-row-layout-id280_065d22-09 > .kt-row-column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-template-columns: unset;
}

.policy-sp {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .policy-sp {
    display: block;
    overflow: hidden;
  }
}
.policy-sp .policy-swiper-sp {
  margin-bottom: 40px;
}
.policy-sp .swiper-slide {
  height: auto;
  aspect-ratio: 331/367;
}
.policy-sp .swiper-slide * {
  width: 100%;
  height: auto;
  aspect-ratio: 331/367;
}

@media (min-width: 1600px) {
  .kt-adv-heading280_973381-e6,
  .kt-adv-heading280_02d430-c6,
  .kt-adv-heading280_23a9e3-0a {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767.9px) {
  .kt-adv-heading280_973381-e6,
  .kt-adv-heading280_02d430-c6,
  .kt-adv-heading280_23a9e3-0a {
    font-size: 6.4rem !important;
  }
}

@media screen and (max-width: 767.9px) {
  .kt-adv-heading280_23a9e3-0a {
    line-height: 1 !important;
  }
}

@media screen and (max-width: 767.9px) {
  .kt-adv-heading280_5b3493-b3 span {
    display: inline-block;
  }
}

.sec-scroll-point-navi {
  position: sticky;
  top: 80px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .sec-scroll-point-navi {
    position: static;
  }
}

.main_visual {
  height: calc(100svh - 70px);
  min-height: 700px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    height: calc(100svh - 64px);
    min-height: 600px;
    margin-top: 64px;
  }
}
.main_visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .main_visual .image {
    bottom: 0;
    top: auto;
    height: calc(100% - 75px);
  }
}
.main_visual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.main_visual video::-webkit-media-controls {
  display: none;
}
.main_visual video::-moz-video-controls {
  display: none;
}
.main_visual video::--ms-media-controls {
  display: none;
}
.main_visual .cont {
  position: relative;
  padding-top: 90px;
  padding-right: 16px;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .main_visual .cont {
    padding-top: 8px;
    padding-right: 0;
  }
}
.main_visual .top_copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 27px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .main_visual .top_copy {
    gap: 12px;
  }
}
.main_visual .top_copy p {
  background: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 9px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 15px 1px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .top_copy p {
    font-size: 1.1rem;
    gap: 10px;
  }
}
.main_visual .top_copy p::before {
  content: "";
  width: 1px;
  height: 74px;
  background: #1f1b1b;
}
@media screen and (max-width: 767.9px) {
  .main_visual .top_copy p::before {
    height: 60px;
  }
}
.main_visual .top_copy img {
  width: 107px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .main_visual .top_copy img {
    width: 66px;
    margin-top: 16px;
  }
}

.top_swiper {
  width: 100vw;
  overflow: hidden;
}
.top_swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.top_swiper .swiper-slide {
  width: 350px;
  height: 250px;
  margin-right: 17px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .swiper-slide {
    width: 180px;
    height: 130px;
    margin-right: 10px;
  }
}
.top_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.top_content .top_title_en {
  font-size: 12rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .top_content .top_title_en {
    font-size: 6.4rem;
  }
}
.top_content h2 {
  font-size: 1.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 6px 1px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767.9px) {
  .top_content h2 {
    font-size: 1.3rem;
  }
}
.top_content .top_lead {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767.9px) {
  .top_content .top_lead {
    font-size: 2rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    letter-spacing: 0.03em;
    line-height: 2;
  }
}

.top_about {
  padding-top: 203px;
  overflow: hidden;
  margin-bottom: 168px;
}
@media screen and (max-width: 1024px) {
  .top_about {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about {
    padding-top: 30px;
    margin-bottom: 60px;
  }
}
.top_about .content {
  margin-left: 50px;
  gap: 47px;
  margin-bottom: 102px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1024px) {
  .top_about .content {
    gap: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .content {
    margin-left: 5.8%;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.top_about .top_about_img1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  aspect-ratio: 579/570;
  max-width: 900px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .top_about .top_about_img1 {
    width: 83%;
    max-width: 570px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .top_about_img1 {
    aspect-ratio: 1/1;
    width: 76%;
  }
}
.top_about .top_about_img1 img {
  display: block;
  border-radius: 10px 0 0 10px;
  width: 100%;
  height: 100%;
}
.top_about .detail {
  width: 690px;
  position: relative;
  padding-left: 330px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .top_about .detail {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .detail {
    padding-left: 0;
    padding-right: 44px;
  }
}
.top_about .detail .top_about_lead_wrap {
  padding-right: 112px;
  gap: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .top_about_lead_wrap {
    padding: 0;
    margin-bottom: 33px;
    display: block;
  }
}
.top_about .detail .top_about_lead_wrap h2 {
  background: #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .top_about_lead_wrap h2 {
    position: absolute;
    top: -70px;
    right: 0;
  }
}
.top_about .detail .top_title_en {
  color: #f2f2f2;
  position: absolute;
  z-index: -1;
  top: -130px;
  left: 53px;
}
@media screen and (max-width: 1024px) {
  .top_about .detail .top_title_en {
    left: 0;
    top: -80px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .top_title_en {
    position: static;
  }
}
.top_about .detail .description {
  font-size: 1.5rem;
  line-height: 2.1;
  font-weight: 400;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .description {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .more_btn2 {
    margin-bottom: 60px;
  }
}
.top_about .detail .top_about_img2 {
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 270px;
  height: auto;
  aspect-ratio: 27/31;
}
@media screen and (max-width: 767.9px) {
  .top_about .detail .top_about_img2 {
    position: static;
    bottom: unset;
    width: 195px;
  }
}
.top_about .detail .top_about_img2 img {
  display: block;
  border-radius: 10px;
}

.top_business {
  margin-bottom: 90px;
  padding-bottom: 132px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_business {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.top_business::before {
  content: "";
  width: 65%;
  height: 100%;
  background: #f2f2f2;
  border-radius: 10px;
  position: absolute;
  right: 103px;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top_business::before {
    right: 0;
    width: 85.5%;
  }
}
.top_business .content {
  position: relative;
  padding-top: 100px;
  margin: 0 103px 70px 60px;
  gap: 47px;
  padding-right: 45px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1024px) {
  .top_business .content {
    gap: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .content {
    padding-top: 60px;
    padding-right: 5.8%;
    margin-left: 5.8%;
    gap: 20px;
    margin-right: 0;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 220px;
  }
}
.top_business .top_business_flex {
  position: relative;
  margin-bottom: 60px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_flex {
    margin-bottom: 0;
    gap: 20px;
    position: static;
  }
}
.top_business .top_business_img1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: auto;
  aspect-ratio: 573/605;
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .top_business .top_business_img1 {
    width: 83%;
    max-width: 570px;
    margin-left: auto;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_img1 {
    margin-left: -7px;
    width: 82%;
    aspect-ratio: unset;
  }
}
.top_business .top_business_img1 img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_img1 img {
    aspect-ratio: 1/1;
    height: auto;
  }
}
.top_business .detail {
  width: 583px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_business .detail {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .detail {
    padding-left: 0;
    padding-right: 0;
  }
}
.top_business .detail .top_business_lead_wrap {
  padding-right: 300px;
  padding-top: 170px;
  gap: 47px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_business .detail .top_business_lead_wrap {
    padding: 0;
    margin-bottom: 33px;
    display: block;
    margin-left: 75px;
    margin-top: -5px;
  }
}
.top_business .detail .top_business_lead_wrap h2 {
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .top_business .detail .top_business_lead_wrap h2 {
    position: absolute;
    top: -15px;
    right: 10px;
  }
}
.top_business .detail .top_title_en {
  color: #fff;
  position: absolute;
  z-index: -1;
  letter-spacing: 0.03em;
  top: -40px;
  right: -18px;
}
@media screen and (max-width: 1024px) {
  .top_business .detail .top_title_en {
    left: 130px;
    top: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .detail .top_title_en {
    left: 0;
    position: static;
    margin-left: 48px;
    letter-spacing: 0;
  }
}
.top_business .top_business_detail {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 74px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 70px;
  margin-right: 16px;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_detail {
    gap: 0;
    margin-bottom: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.top_business .description {
  font-size: 1.5rem;
  line-height: 2.1;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .top_business .description {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 75px;
  }
}
.top_business .more_btn2 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .top_business .more_btn2 {
    margin-bottom: 55px;
    margin-left: 75px;
    margin-right: auto;
  }
}
.top_business .top_business_img2 {
  position: absolute;
  right: 2px;
  bottom: -50px;
  width: 280px;
  height: auto;
  aspect-ratio: 27/31;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_business_img2 {
    bottom: 0;
    right: 22px;
    width: 195px;
  }
}
.top_business .top_business_img2 img {
  display: block;
  border-radius: 10px;
}
.top_business ul {
  max-width: 1038px;
  gap: 30px 33px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .top_business ul {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top_business ul li {
  width: calc((100% - 99px) / 4);
}
@media screen and (max-width: 767.9px) {
  .top_business ul li {
    width: calc((100% - 20px) / 2);
  }
}
.top_business ul a {
  display: block;
}
.top_business ul .img {
  width: 100%;
  height: auto;
  aspect-ratio: 235/295;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .top_business ul .img {
    margin-bottom: 12px;
    aspect-ratio: 155/180;
  }
}
.top_business ul .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_business ul h3 {
  font-size: 2.1rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .top_business ul h3 {
    gap: 13px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business ul h3 {
    font-size: 2rem;
  }
}
.top_business ul h3 span {
  width: 19px;
  height: auto;
  aspect-ratio: 1/1;
  background: #0075b1;
  border-radius: 50%;
  position: relative;
}
.top_business ul h3 span::after {
  content: "";
  width: 9px;
  height: auto;
  aspect-ratio: 9/4;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_business ul p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #9fa0a0;
  margin-top: -2px;
}
@media screen and (max-width: 767.9px) {
  .top_business ul p {
    top: 0;
    margin-top: 0;
    font-size: 1.2rem;
  }
}
.top_business ul a:hover {
  opacity: 1;
}
.top_business ul a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top_business ul a:hover h3 span::after {
  right: 0;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top_work {
  margin-bottom: 150px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_work {
    margin-bottom: 60px;
  }
}
.top_work .content {
  margin: 0 60px 0 103px;
  gap: 76px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 767.9px) {
  .top_work .content {
    margin: 0 2.7% 0 5.8%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 45px;
  }
}
.top_work .top_title_en {
  color: #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .top_work .detail {
    position: relative;
    width: 100%;
  }
}
.top_work .top_work_lead_wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_work .top_work_lead_wrap {
    display: block;
    margin-bottom: 35px;
    margin-top: -6px;
  }
}
.top_work h2 {
  background: #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .top_work h2 {
    position: absolute;
    top: 29px;
    right: 35px;
  }
}
.top_work .more_btn2 a {
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .top_work .more_btn2 a {
    margin-left: 0;
  }
}
.top_work .swiper-works {
  margin-top: 70px;
  max-width: 900px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top_work .swiper-works {
    margin-top: 0;
    width: 96.5%;
    margin-left: 10px;
  }
}
.top_work .swiper-works .swiper-slide {
  height: auto;
  width: 100%;
  aspect-ratio: 848/580;
}
.top_work .swiper-works .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}
.top_work .swiper-works .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .top_work .swiper-works .swiper-pagination {
    left: -13px;
    gap: 4px;
  }
}
.top_work .swiper-works .swiper-pagination span {
  width: 1px;
  height: 22px;
  background: #1f1b1b;
}
@media screen and (max-width: 767.9px) {
  .top_work .swiper-works .swiper-pagination span {
    height: 20px;
  }
}

.top_news {
  background: #f2f2f2;
  padding: 200px 0 150px;
}
@media screen and (max-width: 767.9px) {
  .top_news {
    padding: 60px 0 60px;
  }
}
.top_news .cont {
  gap: 82px;
  max-width: 1160px;
}
@media screen and (max-width: 1024px) {
  .top_news .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .top_news .cont {
    gap: 45px;
    position: relative;
    padding-bottom: 80px;
  }
}
.top_news .top_title_en {
  color: #fff;
  margin-top: -50px;
}
@media screen and (max-width: 767.9px) {
  .top_news .top_title_en {
    margin-top: 0;
  }
}
.top_news h2 {
  margin-top: -73px;
  margin-left: 95px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top_news h2 {
    margin-top: -46px;
    margin-left: 45px;
    margin-bottom: 16px;
  }
}
.top_news .left {
  padding-left: 55px;
}
@media screen and (max-width: 1024px) {
  .top_news .left {
    padding-left: 0;
  }
}
.top_news .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news .right {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.top_news .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .top_news .tab-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.top_news .tab-list-item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
  min-width: 131px;
}
.top_news .tab-list-item:hover {
  color: #fff;
  background: #0075b1;
}
.top_news .tab-list-item.active {
  color: #fff;
  background: #0075b1;
}
.top_news .tab-contents-item {
  display: none;
}
.top_news .tab-contents-item.show {
  display: block;
}
@media screen and (max-width: 1024px) {
  .top_news .more_btn2 {
    position: absolute;
    bottom: 6px;
    left: 0;
  }
}

.top_recruit {
  background-image: url(../img/top10.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 115px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_recruit {
    background-image: unset;
    padding-top: 155px;
    padding-bottom: 0;
    background: #fff;
  }
}
.top_recruit::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .top_recruit::before {
    width: 100%;
    height: 212px;
    background-image: url(../img/top10.jpg);
    background-size: cover;
  }
}
.top_recruit .cont {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .cont {
    background: #fff;
    border-radius: 10px 10px 0 0;
    padding: 30px 30px 66px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.top_recruit .top_recruit_title_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .top_recruit_title_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 430px) {
  .top_recruit .top_recruit_title_wrap {
    margin-left: 0;
  }
}
.top_recruit h2 {
  background: #0075b1;
  color: #fff;
  margin-top: 32px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit h2 {
    margin-top: 0;
  }
}
.top_recruit .top_title_en {
  font-size: 10rem;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .top_title_en {
    font-size: 4.8rem;
  }
}
.top_recruit .top_recruit_content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 35px;
  max-width: 612px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .top_recruit_content {
    gap: 20px;
    margin-bottom: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 430px) {
  .top_recruit .top_recruit_content {
    margin-left: 0;
  }
}
.top_recruit .top_recruit_content h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .top_recruit_content h3 {
    font-size: 2.3rem;
  }
}
.top_recruit .top_recruit_content .description {
  font-size: 1.4rem;
  line-height: 2.1;
}
.top_recruit .top_recruit_content .more_btn2 {
  width: 100%;
}

/* fadeUp */
.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes lineHover {
  0% {
    right: 29px;
    width: calc(100% - 29px);
  }
  49% {
    left: auto;
    right: 29px;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 0;
  }
  100% {
    left: 0;
    right: auto;
    width: calc(100% - 29px);
  }
}
@keyframes lineHover {
  0% {
    right: 29px;
    width: calc(100% - 29px);
  }
  49% {
    left: auto;
    right: 29px;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 0;
  }
  100% {
    left: 0;
    right: auto;
    width: calc(100% - 29px);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade {
  opacity: 0;
}

.error-404-content {
  padding: 160px 0;
  background: #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .error-404-content {
    padding: 80px 0;
  }
}
.error-404-content * {
  text-align: center;
}
.error-404-content h2 {
  font-size: 2.8rem;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .error-404-content h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
  }
}
.error-404-content p {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .error-404-content p {
    margin-bottom: 50px;
  }
}
.error-404-content .more_btn a {
  margin: 0 auto;
}

#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 12px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: none;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    right: 8px;
    bottom: 0;
  }
}
#scroll-top:hover {
  bottom: 16px;
}

@media screen and (max-width: 767.9px) {
  #scroll-top:hover {
    bottom: 6px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 29px;
  right: 11px;
}

#scroll-top a span::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 9px;
}

@media screen and (max-width: 767.9px) {
  .kt-adv-heading280_3e47b3-e2 .sp-block {
    display: inline-block;
  }
}

.kt-adv-heading280_a82505-5f {
  white-space: nowrap;
}

@media (min-width: 1366px) {
  .kt-adv-heading286_b57b70-a3 {
    font-size: 13.7rem !important;
  }
}

.page-id-286 .page_top img {
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=common.css.map */