@charset "UTF-8";
/** 文字の定義**/
/** Colorの定義**/
/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
  transition: color 0.2s;
}
a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  display: block;
  width: 100%;
}

img[data-echo] {
  background-image: url(../images/common/loader-white.gif);
  background-size: 30px 30px;
  background-position: center center;
  border: solid 1px #ddd;
  border-radius: 5px;
}

img[data-echo].loaded {
  background-image: none;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.8;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.8;
  }
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}

#wrapper {
  overflow: hidden;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .inner {
    padding: 0 20px;
  }
}

.wrap-flex {
  display: flex;
}
.wrap-flex .col {
  width: 50%;
}
.wrap-flex.flex-3 .col {
  width: 33.3333333333%;
}
.wrap-flex.flex-4 .col {
  width: 25%;
}

.wrap-grid {
  display: grid;
}

.grid-1 {
  gap: 20px 50px;
  grid-template-columns: calc(50% - 25px) calc(50% - 25px);
}

.grid-1 .col-1 {
  grid-area: 1/1/2/3;
}

.grid-1 .col-2 {
  grid-area: 2/1/3/2;
}

.grid-1 .col-3 {
  grid-area: 2/2/3/3;
}

.grid-1 .col-4 {
  grid-area: 3/1/4/3;
}

.arrow-r {
  position: relative;
  padding-right: 15px;
}
.arrow-r::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 5px;
}

.sec-common {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .sec-common {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-common {
    padding: 30px 0;
  }
}

.bt-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #111;
  border-radius: 6px;
  padding: 20px 10px 20px 30px;
  font-size: 17px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  color: #111;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .bt-1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 834px) {
  .bt-1 {
    min-width: 250px;
    padding: 12px 10px 12px 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .bt-1 {
    min-width: inherit;
    width: 80%;
    margin: 0 auto;
  }
}
.bt-1:hover {
  color: #fff;
  background-color: #0056a7;
}
.bt-1:hover .txt {
  transform: translateX(10px);
}
.bt-1:hover .arrow {
  transform: translateX(35px);
}
.bt-1:hover .bd::before {
  left: 20px;
  opacity: 1;
}
.bt-1 .txt {
  transition: 0.4s;
  transform: translateX(0);
}
.bt-1 .bd {
  border-left: solid 1px #111;
  padding: 10px 10px 10px 20px;
  display: block;
  overflow: hidden;
  position: relative;
}
.bt-1 .bd::before {
  content: url("../images/common/arrow-w.svg");
  width: 14px;
  display: block;
  transition: 0.4s;
  position: absolute;
  top: 5px;
  left: -15px;
  opacity: 0;
}
.bt-1 .arrow {
  display: block;
  width: 14px;
  transition: 0.4s;
}
@media screen and (max-width: 834px) {
  .bt-1 .arrow {
    width: 12px;
  }
}
.bt-1.white {
  border: solid 1px #fff;
  color: #fff;
}
.bt-1.white:hover {
  color: #111;
  background-color: #fff;
}
.bt-1.white .bd {
  border-left: solid 1px #fff;
}
.bt-1.white .bd::before {
  content: url("../images/common/arrow-bk.svg");
}

.bt-2 {
  display: block;
  border-radius: 100px;
  background-color: #0056a7;
  text-align: center;
  color: #fff;
  padding: 17px 60px;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .bt-2 {
    font-size: 15px;
  }
}
.bt-2::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.bt-2:hover {
  color: #fff;
}

.bt-3 {
  display: block;
  position: relative;
  border-radius: 6px;
  background-color: #0056a7;
  text-align: center;
  color: #fff;
  padding: 17px 30px;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  transition: 0.4s;
  box-shadow: 0 0 2px #ccc;
}
@media screen and (max-width: 1024px) {
  .bt-3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .bt-3 {
    min-width: 100%;
  }
}
.bt-3 img {
  width: 30px;
  position: absolute;
  left: 30px;
  top: 17px;
}
.bt-3::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.bt-3:hover {
  color: #fff;
  opacity: 0.8;
}
.bt-3.og {
  background-color: #e85a24;
}

.arrow-l {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.arrow-l::before {
  content: "";
  background-image: url("../images/common/arrow-bk.svg");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  transition: 0.4s;
  border: solid 1px #111;
  border-radius: 100px;
}
@media screen and (max-width: 834px) {
  .arrow-l::before {
    width: 16px;
    height: 16px;
  }
}

.zoom {
  overflow: hidden;
}
.zoom img {
  transition: 0.4s;
}
.zoom:hover img {
  transform: scale(1.12);
}

header .inner {
  max-width: inherit;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 834px) {
  header .inner {
    justify-content: space-between;
    padding: 10px 0;
  }
}
header .inner .col-1 {
  width: 20%;
  padding: 0 10px;
}
@media screen and (max-width: 1300px) {
  header .inner .col-1 {
    width: 25%;
  }
}
@media screen and (max-width: 834px) {
  header .inner .col-1 {
    width: 35%;
  }
}
@media screen and (max-width: 600px) {
  header .inner .col-1 {
    width: 70%;
    padding: 10px 10px;
  }
}
header .inner .col-2 {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  header .inner .col-2 {
    width: 55%;
  }
}
@media screen and (max-width: 834px) {
  header .inner .col-2 {
    display: none;
  }
}
header .inner .col-3 {
  width: 20%;
  background-color: #0056a7;
  color: #fff;
  padding: 15px 10px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  header .inner .col-3 {
    display: none;
  }
}
header .inner .col-3 .txt {
  display: block;
  margin: 0 auto;
  font-size: 12px;
  font-weight: bold;
}
header .inner .col-3 a {
  color: #fff;
  display: flex;
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  align-items: center;
}
header .inner .col-3 a.tel {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  header .inner .col-3 a.tel {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  header .inner .col-3 a.tel {
    font-size: 20px;
  }
}
@media screen and (max-width: 1300px) {
  header .inner .col-3 a.tel {
    font-size: 24px;
  }
}
header .inner .col-3 a.tel .icon-phone {
  width: 20px;
  transform: translateY(3px) rotate(10deg);
}
header .inner .col-3 a.mail {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  header .inner .col-3 a.mail {
    font-size: 11px;
  }
}
header .inner .col-3 a.mail .icon-email {
  width: 16px;
}
header .wrap-logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
header .wrap-logo .logo {
  display: block;
  max-width: 300px;
}
header .wrap-logo .en {
  display: block;
  font-size: 10px;
  color: #111;
  text-align: right;
  margin-right: 10px;
}
header .txt-h1 {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  header .txt-h1 {
    font-size: 10px;
  }
}
header .gnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 4%;
}
header .gnav a {
  display: block;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  header .gnav a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1300px) {
  header .gnav a {
    font-size: 14px;
  }
}
header .gnav a::after {
  content: "";
  height: 1.2px;
  width: 0;
  background-color: #0056a7;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}
header .gnav a:hover {
  color: #0056a7;
}
@media (hover: hover) {
  header .gnav a:hover::after {
    width: 100%;
  }
}
header .gnav a.on {
  color: #0056a7;
}
@media (hover: hover) {
  header .gnav a.on::after {
    width: 100%;
  }
}

#bt-nav {
  display: none;
  position: fixed;
  top: 15px;
  right: 20px;
  background-color: #fff;
  padding: 8px;
  cursor: pointer;
  z-index: 999999;
  border-radius: 3px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 834px) {
  #bt-nav {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  #bt-nav {
    top: 25px;
    right: 10px;
  }
}
#bt-nav span {
  position: absolute;
  width: 30px;
  display: block;
  border-top: solid 1.5px #000;
  transition: all 0.4s ease;
}
#bt-nav .item-01 {
  top: 10px;
  left: 10px;
}
#bt-nav .item-02 {
  top: 18px;
  left: 10px;
}
#bt-nav .item-03 {
  top: 26px;
  left: 10px;
}
#bt-nav .txt {
  font-size: 10px;
  top: 32px;
  border-top: none;
  width: 50px;
  text-align: center;
  left: 0px;
  transform: scale(0.8);
}
#bt-nav.on .item-01 {
  transform: rotate(-34deg);
  transform-origin: right;
  left: 8px;
}
#bt-nav.on .item-02 {
  width: 0;
}
#bt-nav.on .item-03 {
  transform: rotate(34deg);
  transform-origin: right;
  left: 8px;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #0056a7;
  z-index: 1000;
  padding: 80px 0 0 0;
  right: -80%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
@media screen and (max-width: 834px) {
  .sp-nav {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .sp-nav {
    width: 70%;
  }
}
.sp-nav.on {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.sp-nav .menu {
  padding-top: 15px;
  border-top: solid 1px #eee;
  list-style: none;
  margin-bottom: 20px;
}
.sp-nav .menu a {
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 0 20px 14px;
  margin-bottom: 15px;
  border-bottom: solid 1px #eee;
  position: relative;
  padding-right: 15px;
}
.sp-nav .menu a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
.sp-nav .wrap-contact .txt {
  display: block;
  margin: 0 auto 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.sp-nav .wrap-contact a {
  color: #fff;
  display: flex;
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  align-items: center;
}
.sp-nav .wrap-contact a.tel {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .sp-nav .wrap-contact a.tel {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sp-nav .wrap-contact a.tel {
    font-size: 20px;
  }
}
.sp-nav .wrap-contact a.tel .icon-phone {
  width: 20px;
  transform: translateY(3px) rotate(10deg);
}
.sp-nav .wrap-contact a.mail {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .sp-nav .wrap-contact a.mail {
    font-size: 13px;
  }
}
.sp-nav .wrap-contact a.mail .icon-email {
  width: 16px;
}

.layer {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.layer.on {
  opacity: 1;
  visibility: visible;
}

footer {
  position: relative;
  background-color: #f5f5f5;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  footer {
    padding-bottom: 80px;
  }
}
footer .inner {
  min-height: 200px;
  padding: 80px 20px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  footer .inner {
    flex-direction: column;
    gap: 30px 0;
    padding: 1px 0 20px;
  }
}
footer .col-1 {
  width: 30%;
}
@media screen and (max-width: 600px) {
  footer .col-1 {
    width: 100% !important;
    order: 2;
    padding: 0 20px;
  }
}
footer .col-1 .logo {
  max-width: 350px;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  footer .col-1 .logo {
    max-width: 250px;
  }
}
footer .col-1 .txt {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  footer .col-1 .txt {
    font-size: 13px;
  }
}
footer .col-2 {
  width: 70%;
  max-width: 400px;
}
@media screen and (max-width: 600px) {
  footer .col-2 {
    width: 100% !important;
    order: 1;
    max-width: inherit;
  }
}
footer .ft-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 600px) {
  footer .ft-menu {
    gap: 1px;
  }
}
@media screen and (max-width: 600px) {
  footer .ft-menu li {
    width: calc(50% - 1px);
  }
}
footer .ft-menu li:last-child {
  width: 100%;
}
footer .ft-menu a {
  color: #111;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  footer .ft-menu a {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  footer .ft-menu a {
    background-color: #fff;
    text-align: center;
    display: block;
    padding: 10px;
  }
}
footer .copyright {
  background-color: #0056a7;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  padding: 12px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  footer .copyright {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  footer .copyright {
    color: #111;
    background-color: transparent;
  }
}

#back-top {
  position: absolute;
  top: -15px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background-color: #0056a7;
  border-radius: 100px;
  border: solid 1px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  #back-top {
    position: fixed;
    top: inherit;
    bottom: 70px;
    right: 10px;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: 0.4s;
  }
}
@media screen and (max-width: 600px) {
  #back-top.on {
    opacity: 1;
  }
}
#back-top img {
  display: block;
  transform: rotate(-90deg);
  width: 14px;
}
@media screen and (max-width: 600px) {
  #back-top img {
    width: 10px;
  }
}

.sp-ft-menu {
  background-color: #0056a7;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-ft-menu {
    display: block;
  }
}
.sp-ft-menu ul {
  display: flex;
}
.sp-ft-menu ul li {
  width: 25%;
}
.sp-ft-menu ul li a {
  display: block;
  text-align: center;
}
.sp-ft-menu ul li .icon {
  display: block;
  margin: 0 auto 5px;
  width: auto;
  height: 18px;
}
.sp-ft-menu ul li .icon.icon-2 {
  height: 24px;
}
.sp-ft-menu ul li .txt {
  text-align: center;
  font-size: 10px;
  display: block;
  color: #fff;
}

.sec-mv {
  background-color: #eaf3f8;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.sec-mv .marquee {
  width: 100%;
  overflow: hidden;
}
.sec-mv .marquee__inner {
  display: flex;
  white-space: nowrap;
}
.sec-mv .marquee__group {
  display: flex;
}
.sec-mv .marquee__inner img {
  height: 400px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
  margin-right: 15px;
}
@media screen and (max-width: 834px) {
  .sec-mv .marquee__inner img {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .marquee__inner img {
    height: 350px;
    width: 300px;
  }
}
@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--move));
  }
}
.sec-mv .wrap-catch {
  position: absolute;
  top: 80px;
  left: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-catch {
    top: 50px;
    left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-catch {
    top: 30px;
  }
}
.sec-mv .wrap-catch .txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-catch .txt {
    font-size: 30px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-catch .txt {
    font-size: 20px;
    border-radius: 6px;
  }
}
.sec-mv .wrap-catch p {
  padding-top: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 0 0 2px #666;
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-catch p {
    font-size: 15px;
  }
}
.sec-mv .wrap-news {
  display: flex;
  padding: 15px 20px 0;
  gap: 10px 20px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-news {
    gap: 10px;
  }
}
.sec-mv .wrap-news .title {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-news .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-news .title {
    font-size: 10px;
  }
}
.sec-mv .wrap-news a {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-news a {
    font-size: 14px;
  }
}
.sec-mv .wrap-news a .new {
  color: #d60000;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
.sec-mv .wrap-news .date {
  color: #666;
  margin-left: 10px;
  font-weight: normal;
  font-size: smaller;
}
.sec-mv .wrap-bn-recruit {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #00a199;
  display: flex;
  gap: 20px;
  border-radius: 6px;
  box-shadow: 0 0 3px #666;
  padding: 10px 30px 10px 10px;
  transition: 0.6s;
  transform: translateX(20px);
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit {
    padding: 10px 20px 10px 10px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .wrap-bn-recruit {
    bottom: 70px;
    position: static;
    margin: 20px auto 10px;
    width: 80%;
    transition: 0.4s;
  }
}
.sec-mv .wrap-bn-recruit::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 15px;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit::after {
    width: 6px;
    height: 6px;
  }
}
.sec-mv .wrap-bn-recruit.on {
  transform: translateX(0);
  opacity: 1;
}
.sec-mv .wrap-bn-recruit.on .wrap-img {
  opacity: 1;
  transform: scale(1);
}
.sec-mv .wrap-bn-recruit .wrap-img {
  width: 80px;
  transition: 0.6s 0.2s;
  opacity: 0;
  transform: scale(1.2);
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit .wrap-img {
    width: 60px;
  }
}
.sec-mv .wrap-bn-recruit .wrap-img img {
  display: block;
  width: 100%;
}
.sec-mv .wrap-bn-recruit .wrap-txts {
  width: calc(100% - 100px);
  text-align: center;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit .wrap-txts {
    width: calc(100% - 80px);
  }
}
.sec-mv .wrap-bn-recruit .wrap-txts .txt-1 {
  display: block;
  color: #fff000;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit .wrap-txts .txt-1 {
    font-size: 12px;
  }
}
.sec-mv .wrap-bn-recruit .wrap-txts .txt-2 {
  font-weight: bold;
  display: block;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-mv .wrap-bn-recruit .wrap-txts .txt-2 {
    font-size: 15px;
  }
}

.wrap-title-area {
  display: flex;
  align-items: center;
  gap: 20px 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .wrap-title-area {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .wrap-title-area {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-title-area {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.wrap-title-area.bd::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #0056a7;
}
@media screen and (max-width: 600px) {
  .wrap-title-area .wrap-title {
    width: 100%;
  }
}
.wrap-title-area .wrap-title .en {
  font-size: 50px;
  color: #0056a7;
  display: block;
  letter-spacing: 6px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .wrap-title-area .wrap-title .en {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-title-area .wrap-title .en {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .wrap-title-area .wrap-title .en {
    letter-spacing: 4px;
  }
}
.wrap-title-area .wrap-title .jp {
  font-size: 14px;
  color: #0056a7;
  display: block;
}
@media screen and (max-width: 834px) {
  .wrap-title-area .wrap-title .jp {
    font-size: 12px;
  }
}
.wrap-title-area .desc {
  width: 70%;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .wrap-title-area .desc {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .wrap-title-area .desc {
    width: 100%;
  }
}
.wrap-title-area .desc p {
  font-size: 17px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .wrap-title-area .desc p {
    font-size: 15px;
  }
}
.wrap-title-area .desc .note {
  display: block;
  font-size: smaller;
  margin-top: 20px;
  color: #666;
}

.sec-about .wrap-flex {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .sec-about .wrap-flex {
    gap: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-about .wrap-flex {
    flex-wrap: wrap;
  }
}
.sec-about .wrap-flex .col {
  width: 33.3333333333%;
}
@media screen and (max-width: 600px) {
  .sec-about .wrap-flex .col {
    width: 100%;
  }
}
.sec-about .wrap-flex .wrap-img {
  aspect-ratio: 1.6/1;
  overflow: hidden;
  margin-bottom: 20px;
}
.sec-about .wrap-flex .wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.sec-about .wrap-flex .wrap-logo {
  aspect-ratio: 1.6/1;
  overflow: hidden;
  background-color: #eaf3f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sec-about .wrap-flex .wrap-logo img {
  display: block;
  width: 100%;
  max-width: 70%;
}
.sec-about .wrap-flex .title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .sec-about .wrap-flex .title {
    font-size: 16px;
  }
}
.sec-about .wrap-flex p {
  line-height: 1.6;
  padding: 0 10px;
}
@media screen and (max-width: 834px) {
  .sec-about .wrap-flex p {
    font-size: 14px;
  }
}
.sec-about .bt-1 {
  margin: 0 auto;
}

.sec-business {
  background-color: #eaf3f8;
}
.sec-business .flex-1 {
  gap: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .sec-business .flex-1 {
    gap: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-business .flex-1 {
    flex-direction: column;
  }
}
.sec-business .flex-1 .col-txts {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-business .flex-1 .col-txts {
    width: 100%;
    order: 2;
  }
}
.sec-business .flex-1 .col-txts h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-business .flex-1 .col-txts h3 {
    font-size: 20px;
  }
}
.sec-business .flex-1 .col-txts p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec-business .flex-1 .col-txts p {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .sec-business .flex-1 .col-txts p {
    font-size: 14px;
  }
}
.sec-business .flex-1 .col-img {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-business .flex-1 .col-img {
    width: 100%;
  }
}
.sec-business .flex-1 .col-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .sec-business .flex-1 .col-img img {
    aspect-ratio: 1/0.8;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .sec-business .flex-1 .col-img img {
    aspect-ratio: 1/0.6;
  }
}
.sec-business .flex-2 {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 834px) {
  .sec-business .flex-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-business .flex-2 {
    flex-direction: column;
  }
}
.sec-business .flex-2 .col {
  width: 33.3333333333%;
}
@media screen and (max-width: 600px) {
  .sec-business .flex-2 .col {
    width: 100%;
  }
}
.sec-business .flex-2 .wrap-img {
  aspect-ratio: 1.6/1;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}
.sec-business .flex-2 .wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.sec-business .flex-2 .title {
  color: #111;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .sec-business .flex-2 .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .sec-business .flex-2 .title {
    font-size: 14px;
  }
}
.sec-business .flex-2 .title br {
  display: none;
}
@media screen and (max-width: 834px) {
  .sec-business .flex-2 .title br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .sec-business .flex-2 .title br {
    display: none;
  }
}

.sec-works .flex-1 {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .sec-works .flex-1 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .sec-works .flex-1 {
    gap: 20px 5px;
    margin-bottom: 50px;
  }
}
.sec-works .flex-1 .col {
  width: 25%;
}
@media screen and (max-width: 834px) {
  .sec-works .flex-1 .col {
    width: calc(50% - 2.5px);
  }
}
.sec-works .flex-1 .wrap-img {
  aspect-ratio: 1.6/1;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .sec-works .flex-1 .wrap-img {
    margin-bottom: 10px;
    border-radius: 6px;
  }
}
.sec-works .flex-1 .wrap-img.bd {
  border: solid 1px #ddd;
}
.sec-works .flex-1 .wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.sec-works .flex-1 .title {
  color: #111;
  text-align: center;
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .sec-works .flex-1 .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .sec-works .flex-1 .title {
    font-size: 13px;
  }
}
.sec-works .bt-1 {
  margin: 0 auto;
}

.sec-others .grid-1 {
  gap: 20px;
  grid-template-columns: calc(50% - 20px) calc(50% - 20px);
}
.sec-others .col {
  position: relative;
  height: 350px;
}
@media screen and (max-width: 834px) {
  .sec-others .col {
    height: 250px;
  }
}
.sec-others a {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  color: #fff;
  box-shadow: 0 0 3px #ccc;
}
.sec-others .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.sec-others .title .en {
  font-size: 50px;
  display: block;
  letter-spacing: 6px;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .sec-others .title .en {
    font-size: 30px;
  }
}
.sec-others .title .jp {
  font-size: 14px;
  display: block;
  font-weight: bold;
}
.sec-others .bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1.6/1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 {
    gap: 20px 50px;
    grid-template-columns: 100% calc(50% - 25px);
  }
}
.sec-others .grid-1 .col-1 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-1 {
    grid-area: 1/1/2/2;
  }
}
.sec-others .grid-1 .col-2 {
  grid-area: 1/2/2/4;
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-2 {
    grid-area: 2/1/3/2;
  }
}
.sec-others .grid-1 .col-3 {
  grid-area: 2/1/3/4;
  background-color: #00a199;
  border-radius: 10px;
  box-shadow: 0 0 3px #ccc;
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-3 {
    grid-area: 3/1/4/2;
  }
}
.sec-others .grid-1 .col-3 .title {
  position: absolute;
  top: 40px;
  left: 80px;
  transform: translate(0, 0);
  z-index: 2;
  text-align: left;
}
.sec-others .grid-1 .col-3 .title .txt-sub {
  color: #fff000;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-3 .title .txt-sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  .sec-others .grid-1 .col-3 .title {
    top: 30px;
    left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-3 .title {
    top: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-others .grid-1 .col-3 .title .en {
    text-shadow: 0 0 2px #999;
  }
}
.sec-others .bt-1 {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .sec-others .bt-1 {
    display: none;
  }
}
.sec-others .bn-recruit {
  width: auto;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 600px) {
  .sec-others .bn-recruit {
    -o-object-fit: cover;
       object-fit: cover;
    width: 60%;
    height: 100%;
    -o-object-position: top center;
       object-position: top center;
    border-radius: 0 10px 10px 0;
    top: 0px;
    right: 0px;
  }
}
.sec-others .wrap-catch {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 600px) {
  .sec-others .wrap-catch {
    bottom: 20px;
    right: inherit;
    left: 20px;
  }
}
.sec-others .wrap-catch span {
  display: block;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 834px) {
  .sec-others .wrap-catch span {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-others .wrap-catch span {
    font-size: 13px;
    padding: 10px;
  }
}
.sec-others .wrap-catch span.txt-1 {
  margin-bottom: 10px;
}

.sec-faq {
  background-color: #f5f5f5;
}
.sec-faq .wrap-title-area {
  display: block;
  text-align: center;
}
.sec-faq .wrap-title-area .wrap-title {
  width: 100%;
}
.sec-faq .bt-2 {
  margin: 0 auto;
}

.dl-faq {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.dl-faq dt {
  background-color: #fff;
  border-radius: 6px;
  padding: 15px;
  color: #0056a7;
  font-weight: bold;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.4s;
  will-change: background-color;
  border: solid 1px #eee;
}
@media screen and (max-width: 1024px) {
  .dl-faq dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .dl-faq dt {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .dl-faq dt {
    font-size: 14px;
  }
}
.dl-faq dt::before {
  content: "Q";
  font-size: 30px;
  font-weight: bold;
  display: block;
}
.dl-faq dt .plus {
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 600px) {
  .dl-faq dt .plus {
    right: 10px;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
  }
}
.dl-faq dt .plus::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0056a7;
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  transition: 0.2s;
}
.dl-faq dt .plus::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0056a7;
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(90deg);
  transition: 0.2s;
}
.dl-faq dt:hover {
  background-color: #0056a7;
  color: #fff;
}
.dl-faq dt:hover .plus::before {
  background-color: #fff;
}
.dl-faq dt:hover .plus::after {
  background-color: #fff;
}
.dl-faq dt.on {
  background-color: #0056a7;
  color: #fff;
}
.dl-faq dt.on .plus::after {
  transform: rotate(0deg);
  background-color: #fff;
}
.dl-faq dd {
  padding: 10px 15px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 17px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .dl-faq dd {
    font-size: 15px;
  }
}
@media screen and (max-width: 834px) {
  .dl-faq dd {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .dl-faq dd {
    font-size: 14px;
  }
}
.dl-faq dd::before {
  content: "A";
  font-size: 30px;
  font-weight: bold;
  display: block;
  color: #d60000;
}

.sec-cta .wrap-cta {
  gap: 50px;
  background-color: #eaf3f8;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  justify-content: center;
  box-shadow: 0 0 3px #ccc;
}
@media screen and (max-width: 600px) {
  .sec-cta .wrap-cta {
    flex-direction: column;
    gap: 30px;
  }
}
.sec-cta .wrap-cta .col {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sec-cta .wrap-cta .col {
    width: 100%;
  }
}
.sec-cta .wrap-cta .col .title {
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sec-cta .wrap-cta .col .title {
    margin-bottom: 20px;
  }
}
.sec-cta .wrap-cta .col-1 .wrap-tel .tel {
  color: #111;
  font-size: 45px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .sec-cta .wrap-cta .col-1 .wrap-tel .tel {
    font-size: 40px;
  }
}
.sec-cta .wrap-cta .col-1 .wrap-tel .icon-phone {
  width: 24px;
  fill: #111;
  display: block;
  transform: translateY(3px) rotate(10deg);
}
.sec-cta .wrap-cta .col-1 .wrap-tel .txt {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-cta .wrap-cta .col-1 .wrap-tel .txt {
    font-size: 13px;
  }
}
.sec-cta .wrap-cta .col-2 .bt-1 {
  margin: 0 auto;
  background-color: #0056a7;
  color: #fff;
  border: none;
  padding: 15px 10px 15px 30px;
}
@media screen and (max-width: 834px) {
  .sec-cta .wrap-cta .col-2 .bt-1 {
    min-width: 100%;
  }
}
.sec-cta .wrap-cta .col-2 .bt-1 .bd {
  border-left: solid 1px #fff;
}
.sec-cta .wrap-cta .col-2 .icon-email {
  width: 30px;
  fill: #fff;
}
@media screen and (max-width: 834px) {
  .sec-cta .wrap-cta .col-2 .icon-email {
    width: 25px;
  }
}

.sec-page-hd {
  background-color: #eaf3f8;
  position: relative;
}
.sec-page-hd .page-title {
  padding: 140px 0;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1500px) {
  .sec-page-hd .page-title {
    padding-left: 10%;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-hd .page-title {
    padding: 100px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd .page-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
.sec-page-hd .page-title .en {
  display: block;
  font-size: 50px;
  margin-bottom: 10px;
  letter-spacing: 4px;
}
@media screen and (max-width: 1024px) {
  .sec-page-hd .page-title .en {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd .page-title .en {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd .page-title .en {
    margin-top: 20%;
    letter-spacing: 3px;
    text-shadow: 0 0 2px #666;
    margin-bottom: 0;
    color: #fff;
  }
}
.sec-page-hd .page-title .ja {
  font-size: 14px;
  display: block;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .sec-page-hd .page-title .ja {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd .page-title .ja {
    text-shadow: 0 0 2px #666;
    color: #fff;
  }
}
.sec-page-hd .wrap-hd-img {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  width: 50%;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .sec-page-hd .wrap-hd-img {
    height: 450px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-hd .wrap-hd-img {
    width: 60%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd .wrap-hd-img {
    position: static;
    width: 100%;
    height: 230px;
    border-radius: 0;
  }
}
.sec-page-hd .wrap-hd-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.sec-page-hd.simple .page-title {
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .sec-page-hd.simple .page-title {
    position: static;
    top: 0;
    left: 0;
    padding: 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd.simple .page-title .en {
    margin-top: 0;
    text-shadow: none;
    color: #111;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-hd.simple .page-title .ja {
    text-shadow: none;
    color: #111;
  }
}

.b-navi {
  background-color: #0056a7;
  padding: 20px 0;
  margin-bottom: 150px;
}
.b-navi.simple {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .b-navi {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 834px) {
  .b-navi {
    padding: 15px 0;
    margin-bottom: 50px;
  }
}
.b-navi .inner {
  display: flex;
  gap: 10px;
}
.b-navi .inner li {
  font-size: 14px;
  color: rgba(244, 244, 244, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .b-navi .inner li {
    font-size: 13px;
  }
}
@media screen and (max-width: 834px) {
  .b-navi .inner li {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .b-navi .inner li {
    font-size: 11px;
  }
}
.b-navi .inner li::after {
  content: "";
  display: block;
  width: 20px;
  height: 0.5px;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .b-navi .inner li::after {
    width: 10px;
  }
}
.b-navi .inner li:last-child::after {
  display: none;
}
.b-navi .inner a {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .b-navi .inner a {
    font-size: 13px;
  }
}

.page-navi .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .page-navi .inner {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .page-navi .inner {
    justify-content: flex-start;
    gap: 0 20px;
  }
}
.page-navi .inner li {
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .page-navi .inner li {
    font-size: 15px;
  }
}
@media screen and (max-width: 834px) {
  .page-navi .inner li {
    font-size: 12px;
  }
}
.page-navi .inner li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0056a7;
  padding-bottom: 10px;
  position: relative;
  transition: 0.4s;
}
.page-navi .inner li a:hover {
  color: #0056a7;
}
@media (hover: hover) {
  .page-navi .inner li a:hover::after {
    width: 100%;
  }
}
.page-navi .inner li a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background-color: #0056a7;
}
@media screen and (max-width: 600px) {
  .page-navi .inner li a::before {
    width: 7px;
    height: 7px;
  }
}

.sec-message {
  padding-bottom: 0;
}
.sec-message .wrap-flex {
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex {
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-flex {
    flex-direction: column;
  }
}
.sec-message .wrap-flex .wrap-img {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex .wrap-img {
    width: 35%;
  }
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-flex .wrap-img {
    width: 70%;
    margin: 0 auto;
  }
}
.sec-message .wrap-flex .wrap-img img {
  border-radius: 10px;
  margin-bottom: 10px;
}
.sec-message .wrap-flex .wrap-img .name {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex .wrap-img .name {
    font-size: 13px;
  }
}
.sec-message .wrap-flex .wrap-txts {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex .wrap-txts {
    width: 65%;
  }
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-flex .wrap-txts {
    width: 100%;
  }
}
.sec-message .wrap-flex .wrap-txts h3 {
  margin-bottom: 30px;
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex .wrap-txts h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-message .wrap-flex .wrap-txts h3 {
    font-size: 20px;
  }
}
.sec-message .wrap-flex .wrap-txts .mes p {
  font-size: 17px;
  margin-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .sec-message .wrap-flex .wrap-txts .mes p {
    font-size: 15px;
  }
}

.wrap-table {
  max-width: 1000px;
  margin: 0 auto;
}
.wrap-table table {
  width: 100%;
  border-spacing: 0;
}
.wrap-table th {
  color: #0056a7;
  font-size: 17px;
  font-weight: bold;
  padding: 20px;
  width: 30%;
  vertical-align: top;
  border-bottom: solid 0.5px #333;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .wrap-table th {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 20px 0 0;
  }
}
.wrap-table td {
  font-size: 17px;
  padding: 20px;
  line-height: 1.8;
  border-bottom: solid 0.5px #333;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .wrap-table td {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-table td {
    display: block;
    padding: 10px 0 20px;
  }
}
.wrap-table .item {
  margin-bottom: 20px;
}
.wrap-table .item:last-child {
  margin-bottom: 0;
}

.add {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.map {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 10px 0 5px;
  border-radius: 100px;
  background-color: #0071bc;
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
  align-items: center;
  transition: 0.2s;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .map {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .map:hover {
    background-color: #ccc;
  }
}
.map::before {
  content: "";
  background-image: url("../images/common/icon-location.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 14px;
  display: block;
}

.sec-history {
  background-color: #eaf3f8;
}

.sec-offices .title-h3 {
  color: #0056a7;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-offices .title-h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .sec-offices .title-h3 {
    font-size: 16px;
  }
}
.sec-offices .title-h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #0056a7;
  border-radius: 100px;
}
.sec-offices .wrap-office {
  margin-bottom: 100px;
  gap: 50px;
}
@media screen and (max-width: 834px) {
  .sec-offices .wrap-office {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-offices .wrap-office {
    flex-direction: column;
    gap: 20px;
  }
}
.sec-offices .wrap-office .col-img {
  width: 35%;
}
@media screen and (max-width: 600px) {
  .sec-offices .wrap-office .col-img {
    width: 100%;
  }
}
.sec-offices .wrap-office .col-img img {
  border-radius: 10px;
  margin-bottom: 20px;
}
.sec-offices .wrap-office .col-img .address .txt {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .sec-offices .wrap-office .col-img .address .txt {
    font-size: 12px;
  }
}
.sec-offices .wrap-office .col-map {
  width: 65%;
}
@media screen and (max-width: 600px) {
  .sec-offices .wrap-office .col-map {
    width: 100%;
  }
}
.sec-offices .wrap-office .col-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .sec-offices .wrap-office .col-map iframe {
    height: 250px;
  }
}

.bd-top {
  border-top: solid 1px #ddd;
}

.font-s {
  font-size: smaller;
}

.sec-equipment .wrap-item {
  max-width: 1000px;
  margin: 0 auto 100px;
  gap: 50px;
}
.sec-equipment .wrap-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .sec-equipment .wrap-item {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto 30px;
    border-bottom: solid 1px #ddd;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-equipment .wrap-item .col-img {
    width: 100%;
  }
}
.sec-equipment .wrap-item .col-img img {
  width: auto;
  height: auto;
  max-width: 400px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .sec-equipment .wrap-item .col-img img {
    max-width: 100%;
    max-height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .sec-equipment .wrap-item .col-img img {
    max-width: 80%;
    max-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .sec-equipment .wrap-item .col-txts {
    width: 100%;
  }
}
.sec-equipment .wrap-item .name {
  margin-bottom: 30px;
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-equipment .wrap-item .name {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-equipment .wrap-item .name {
    font-size: 20px;
  }
}
.sec-equipment .wrap-item .name .font-s {
  display: block;
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .sec-equipment .wrap-item .name .font-s {
    font-size: 15px;
  }
}
.sec-equipment .wrap-item .desc p {
  line-height: 1.8;
  margin-bottom: 1em;
}

.sec-page-business .page-catch {
  margin-bottom: 50px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .sec-page-business .page-catch {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-business .page-catch {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-business .page-catch {
    text-align: left;
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) and (max-width: 1024px) {
  .sec-page-business .page-catch {
    font-size: 20px;
  }
}
.sec-page-business .block {
  border-top: solid 1px #ddd;
  padding: 50px 30px;
}
@media screen and (max-width: 834px) {
  .sec-page-business .block {
    padding: 50px 0px;
  }
}
.sec-page-business .block .wrap-flex {
  gap: 100px;
}
@media screen and (max-width: 834px) {
  .sec-page-business .block .wrap-flex {
    flex-direction: column;
    gap: 50px;
  }
}
.sec-page-business .block .col-txts {
  width: 60%;
}
@media screen and (max-width: 834px) {
  .sec-page-business .block .col-txts {
    width: 100%;
    order: 2;
  }
}
.sec-page-business .block .col-img {
  width: 40%;
}
@media screen and (max-width: 834px) {
  .sec-page-business .block .col-img {
    width: 100%;
    order: 1;
  }
}
.sec-page-business .block .col-img img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .sec-page-business .block .col-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-business .block .col-img img {
    height: auto;
    aspect-ratio: 1.6/1;
  }
}
.sec-page-business .block h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-page-business .block h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-business .block h2 {
    font-size: 20px;
  }
}
.sec-page-business .block .desc {
  margin-bottom: 30px;
}
.sec-page-business .block .item {
  margin-bottom: 30px;
}
.sec-page-business .block .item h3 {
  margin-bottom: 10px;
}
.sec-page-business .wrap-bts {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sec-page-business .wrap-bts {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-business .wrap-bts a {
    width: 100%;
  }
}

#flow {
  border-top: solid 1px #ddd;
  padding-top: 50px;
}
#flow h3 {
  text-align: center;
  background-color: #0056a7;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  margin: 0 auto 30px;
  color: #fff;
  padding: 10px 50px;
}
@media screen and (max-width: 600px) {
  #flow h3 {
    font-size: 14px;
  }
}
#flow .wrap-flow {
  border: solid 2px #0056a7;
  border-radius: 10px;
  padding: 80px;
  background-color: #eaf3f8;
  min-height: 500px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  #flow .wrap-flow {
    padding: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow {
    padding: 30px 30px 30px 20px;
  }
}
#flow .wrap-flow .col {
  width: calc(33.3333333333% - 33.3333333333px);
}
@media screen and (max-width: 834px) {
  #flow .wrap-flow .col {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow .col {
    width: calc(50% - 15px);
  }
}
#flow .wrap-flow .col:last-child .wrap-img::after {
  display: none;
}
#flow .wrap-flow .col h4 {
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #flow .wrap-flow .col h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow .col h4 {
    font-size: 14px;
  }
}
#flow .wrap-flow .col h4 .num {
  position: absolute;
  top: -5px;
  left: 0;
  background-color: #0056a7;
  color: #fff;
  font-size: 24px;
  border-radius: 100px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 834px) {
  #flow .wrap-flow .col h4 .num {
    font-size: 18px;
    width: 30px;
    height: 30px;
    top: -2px;
  }
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow .col h4 .num {
    font-size: 14px;
    width: 20px;
    height: 20px;
    top: 3px;
    left: -10px;
  }
}
@media screen and (max-width: 834px) {
  #flow .wrap-flow .col p {
    font-size: 13px;
  }
}
#flow .wrap-flow .col .wrap-img {
  margin-bottom: 10px;
  position: relative;
}
#flow .wrap-flow .col .wrap-img::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.42 13' fill='%230056a7'><polygon points='6.92 13 5.56 11.64 9.71 7.49 0 7.49 0 5.51 9.71 5.51 5.56 1.36 6.92 0 13.42 6.5 6.92 13'/></svg>");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 10px);
  right: -35px;
}
@media screen and (max-width: 834px) {
  #flow .wrap-flow .col .wrap-img::after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7.5px);
    right: -20px;
  }
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow .col .wrap-img::after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    right: -20px;
  }
}
#flow .wrap-flow .col .wrap-img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
  height: auto;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  #flow .wrap-flow .col .wrap-img img {
    aspect-ratio: 1/1;
  }
}

.sec-page-works .page-catch {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .sec-page-works .page-catch {
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.6;
  }
}
.sec-page-works .page-catch .note {
  display: block;
  font-size: smaller;
  color: #666;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .sec-page-works .page-catch .note {
    text-align: left;
  }
}
.sec-page-works .item {
  padding: 80px 30px;
  border-top: solid 1px #ddd;
  gap: 100px;
}
.sec-page-works .item:nth-of-type(2n) {
  background-color: #f5f5f5;
}
@media screen and (max-width: 600px) {
  .sec-page-works .item {
    flex-direction: column;
    gap: 10px;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-img {
    width: 100%;
  }
}
.sec-page-works .item .col-img img {
  border-radius: 10px;
  height: auto;
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 1px #eee;
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-img img {
    border-radius: 8px;
  }
}
.sec-page-works .item .col-img .note {
  color: #666;
  text-align: right;
  display: block;
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .sec-page-works .item .col-img .note {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-txts {
    width: 100%;
  }
}
.sec-page-works .item .col-txts .name {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-page-works .item .col-txts .name {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-txts .name {
    font-size: 20px;
  }
}
.sec-page-works .item .col-txts .desc {
  margin-bottom: 30px;
}
.sec-page-works .item .col-txts .desc p {
  margin-bottom: 1em;
}
.sec-page-works .item .col-txts .desc ul {
  margin-left: 20px;
}
.sec-page-works .item .col-txts .desc li {
  list-style: disc;
}
.sec-page-works .item .col-txts .title-process {
  font-size: 17px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-page-works .item .col-txts .title-process {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-txts .title-process {
    font-size: 14px;
  }
}
.sec-page-works .item .col-txts .wrap-process {
  border: solid 1px #0056a7;
  border-radius: 6px;
  padding: 20px;
  background-color: #eaf3f8;
  margin-bottom: 30px;
}
.sec-page-works .item .col-txts .wrap-process ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-txts .wrap-process ul {
    gap: 10px;
  }
}
.sec-page-works .item .col-txts .wrap-process li {
  background-color: #0056a7;
  color: #fff;
  font-size: 14px;
  border-radius: 100px;
  padding: 5px 20px;
}
@media screen and (max-width: 1024px) {
  .sec-page-works .item .col-txts .wrap-process li {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-works .item .col-txts .wrap-process li {
    font-size: 12px;
  }
}
.sec-page-works .item .col-txts .wrap-process li.gray {
  background-color: #ccc;
}

.sec-hd-recruit {
  background-color: #00a199;
  position: relative;
  padding: 20px 40px;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit {
    padding: 20px;
  }
}
.sec-hd-recruit .wrap-mv {
  width: auto;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-mv {
    height: auto;
  }
}
.sec-hd-recruit .wrap-mv img {
  height: 100%;
  width: auto;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-mv img {
    height: auto;
    width: 100%;
  }
}
.sec-hd-recruit .wrap-mv .txt-1 {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff000;
  display: block;
  font-weight: bold;
  font-size: 15px;
  padding: 5px 20px;
  border-radius: 0 6px 0 6px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-mv .txt-1 {
    font-size: 12px;
  }
}
.sec-hd-recruit .wrap-catch {
  position: absolute;
  top: 80px;
  left: 40px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-catch {
    top: 50px;
    left: 10px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .sec-hd-recruit .wrap-catch {
    top: 35%;
    left: 10px;
  }
}
.sec-hd-recruit .wrap-catch .txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-catch .txt {
    font-size: 30px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-hd-recruit .wrap-catch .txt {
    font-size: 20px;
    border-radius: 6px;
  }
}
.sec-hd-recruit .wrap-catch p {
  padding-top: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 0 0 2px #666;
}
@media screen and (max-width: 834px) {
  .sec-hd-recruit .wrap-catch p {
    font-size: 17px;
    width: 77%;
  }
}
@media screen and (max-width: 600px) {
  .sec-hd-recruit .wrap-catch p {
    font-size: 14px;
    width: 100%;
    background-color: #fff;
    color: #111;
    text-shadow: none;
    border-radius: 6px;
    padding: 10px;
  }
}

.sec-rq-01 .flex-1 {
  gap: 50px;
  margin-bottom: 150px;
}
@media screen and (max-width: 834px) {
  .sec-rq-01 .flex-1 {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .flex-1 {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.sec-rq-01 .col {
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .col {
    width: 100%;
  }
}
.sec-rq-01 .img-01 {
  border-radius: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.sec-rq-01 .img-02 {
  border-radius: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -50px;
  right: 0;
}
@media screen and (max-width: 834px) {
  .sec-rq-01 .img-02 {
    max-width: 150px;
  }
}
.sec-rq-01 .col-txts {
  padding-right: 10%;
}
@media screen and (max-width: 834px) {
  .sec-rq-01 .col-txts {
    padding-right: 0;
  }
}
.sec-rq-01 .col-txts h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-rq-01 .col-txts h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .col-txts h3 {
    font-size: 20px;
  }
}
.sec-rq-01 .col-txts p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .sec-rq-01 .col-txts p {
    font-size: 16px;
  }
}
.sec-rq-01 .wrap-job-details {
  background-color: #eaf3f8;
  border-radius: 10px;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .wrap-job-details {
    padding: 30px;
  }
}
.sec-rq-01 .wrap-job-details dl {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .wrap-job-details dl {
    flex-direction: column;
    gap: 20px;
  }
}
.sec-rq-01 .wrap-job-details dl dt {
  width: 30%;
  color: #0056a7;
  font-weight: bold;
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .wrap-job-details dl dt {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .sec-rq-01 .wrap-job-details dl dt {
    font-size: 15px;
  }
}
.sec-rq-01 .wrap-job-details dl dd {
  width: 70%;
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .sec-rq-01 .wrap-job-details dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-rq-01 .wrap-job-details dl dd {
    font-size: 15px;
  }
}
.sec-rq-01 .wrap-job-details dl dd li {
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .sec-rq-01 .wrap-job-details dl dd li {
    font-size: 15px;
  }
}
.sec-rq-01 .wrap-job-details dl dd ol li {
  margin-left: 20px;
  margin-bottom: 10px;
}
.sec-rq-01 .wrap-job-details dl dd ol li:last-child {
  margin-bottom: 0;
}
.sec-rq-01 .wrap-job-details dl dd ol li .bold {
  display: inline-block;
  min-width: 100px;
  margin-right: 20px;
}
@media screen and (max-width: 834px) {
  .sec-rq-01 .wrap-job-details dl dd ol li .bold {
    display: block;
    margin-right: 0;
    min-width: inherit;
  }
}
.sec-rq-01 .wrap-job-details dl dd ul {
  margin-top: 20px;
}
.sec-rq-01 .wrap-job-details dl dd ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.sec-rq-01 .wrap-job-details dl dd ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .sec-rq-02 {
    padding-bottom: 50px;
  }
}
.sec-rq-02 .swiper {
  width: 100%;
  height: 450px;
  overflow: visible;
  padding-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .sec-rq-02 .swiper {
    height: 300px;
  }
}
.sec-rq-02 .swiper-wrapper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.sec-rq-02 .swiper-wrapper .swiper-slide .wrap-img {
  width: 100%;
  height: 90%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-rq-02 .swiper-wrapper .swiper-slide .wrap-img:hover .pic {
  transform: scale(1.08);
}
.sec-rq-02 .swiper-wrapper .swiper-slide .wrap-img .popup {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #fff;
  border: solid 1px #0056a7;
  color: #0056a7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
}
.sec-rq-02 .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.sec-rq-02 .swiper-wrapper .swiper-slide .name {
  display: block;
  position: absolute;
  bottom: 0px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-rq-02 .swiper-wrapper .swiper-slide .name {
    font-size: 13px;
  }
}
.sec-rq-02 .swiper-wrapper .swiper-slide .year {
  background-color: #fff000;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  border-radius: 0 0 6px 0;
}
@media screen and (max-width: 1024px) {
  .sec-rq-02 .swiper-wrapper .swiper-slide .year {
    font-size: 11px;
  }
}
.sec-rq-02 .swiper-button-next,
.sec-rq-02 .swiper-button-prev {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border-radius: 100%;
  padding: 20px;
  border: solid 1.5px #111;
}
@media screen and (max-width: 600px) {
  .sec-rq-02 .swiper-button-next,
  .sec-rq-02 .swiper-button-prev {
    width: 30px;
    height: 30px;
    padding: 15px;
  }
}
.sec-rq-02 .swiper-button-prev {
  top: auto !important;
  bottom: -40px;
  background-image: url("../images/common/arrow-bk.svg");
  transform: rotate(-180deg);
  background-size: 14px auto;
  background-position: center;
}
.sec-rq-02 .swiper-button-next {
  top: auto !important;
  bottom: -40px;
  right: auto !important;
  left: 60px !important;
  background-image: url("../images/common/arrow-bk.svg");
  background-size: 14px auto;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .sec-rq-02 .swiper-button-next {
    left: 50px !important;
  }
}
.sec-rq-02 .swiper-button-prev::after,
.sec-rq-02 .swiper-button-next::after {
  display: none !important;
}
.sec-rq-02 .swiper-pagination {
  bottom: 0px !important;
}

.sec-rq-03 .dl-faq {
  margin-bottom: 0;
}

.bt-entry {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  background-color: #fff000;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  padding: 25px 60px 25px 40px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  box-shadow: 0 0 2px #666;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .bt-entry {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .bt-entry {
    width: 100%;
    margin: 30px auto 0;
    position: relative;
    bottom: inherit;
    right: inherit;
    font-size: 20px !important;
    z-index: 1;
  }
}
.bt-entry:hover {
  color: #111;
}
.bt-entry .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: block;
  width: 14px;
  height: auto;
}

.sec-rq-05 {
  background-color: #f5f5f5;
}
.sec-rq-05 .wrap-flex {
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .sec-rq-05 .wrap-flex {
    flex-direction: column;
  }
}
.sec-rq-05 .wrap-flex .col-1 {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-rq-05 .wrap-flex .col-1 {
    width: 100%;
  }
}
.sec-rq-05 .wrap-flex .col-1 .wrap-img {
  margin-bottom: 10px;
}
.sec-rq-05 .wrap-flex .col-2 {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .sec-rq-05 .wrap-flex .col-2 {
    width: 100%;
  }
}
.sec-rq-05 .wrap-flex .col-2 .flex-2 {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.sec-rq-05 .wrap-flex .col-2 .flex-2 .wrap-img {
  width: 45%;
}
.sec-rq-05 .wrap-flex .col-2 .flex-2 .txt {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-rq-05 .wrap-flex .col-2 .flex-2 .txt {
    font-size: 13px;
  }
}
.sec-rq-05 .title-h3 {
  color: #0056a7;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-rq-05 .title-h3 {
    font-size: 16px;
  }
}
.sec-rq-05 .title-h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #0056a7;
  border-radius: 100px;
}
.sec-rq-05 .wrap-img img {
  border-radius: 10px;
}
.sec-rq-05 .txt-2 {
  display: block;
  margin-top: 10px;
}

.show-pop {
  display: none;
  position: fixed;
  background-color: #fff;
  border-radius: 10px;
  width: 80%;
  height: 90%;
  padding: 50px;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
  box-shadow: 0 0 4px #666;
  overflow: auto;
}
@media screen and (max-width: 834px) {
  .show-pop {
    width: 90%;
    left: 5%;
    transform: inherit;
    padding: 30px;
  }
}
.show-pop .in {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 600px) {
  .show-pop .in {
    flex-direction: column;
    gap: 20px;
  }
}
.show-pop .in .col-img {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .show-pop .in .col-img {
    width: 100%;
  }
}
.show-pop .in .col-img .no-img {
  background-color: #f5f5f5;
  border-radius: 10px;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1/1.2;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-pop .in .col-img img {
  border-radius: 10px;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  position: sticky;
  top: 0;
  left: 0;
}
.show-pop .in .col-txts {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .show-pop .in .col-txts {
    width: 100%;
  }
}
.show-pop .in .col-txts .name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .show-pop .in .col-txts .name {
    font-size: 20px;
  }
}
.show-pop .in .col-txts .year,
.show-pop .in .col-txts .belong {
  margin-bottom: 5px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: bold;
}
.show-pop .in .col-txts .year span,
.show-pop .in .col-txts .belong span {
  background-color: #0056a7;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 2px 20px;
}
@media screen and (max-width: 1024px) {
  .show-pop .in .col-txts .year span,
  .show-pop .in .col-txts .belong span {
    font-size: 11px;
  }
}
.show-pop .in .col-txts .belong {
  margin-bottom: 30px;
}
.show-pop .in .col-txts dl {
  margin-bottom: 30px;
}
.show-pop .in .col-txts dt {
  font-weight: bold;
  color: #0056a7;
  margin-bottom: 10px;
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .show-pop .in .col-txts dt {
    font-size: 15px;
  }
}
.show-pop .in .col-txts dd {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .show-pop .in .col-txts dd {
    font-size: 15px;
  }
}
.show-pop .bt-close {
  display: flex;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  border: solid 1px #ddd;
  margin: 0 auto;
  align-items: center;
  padding: 10px 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .show-pop .bt-close {
    font-size: 13px;
  }
}
@media (hover: hover) {
  .show-pop .bt-close:hover {
    background-color: #eee;
  }
}
.show-pop .bt-close img {
  width: 20px;
  height: auto;
}

.bg-layer {
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 90;
  display: none;
}

.sec-page-entry .inner {
  max-width: 900px;
}
.sec-page-entry .catch {
  margin-bottom: 50px;
}
.sec-page-entry .catch p {
  line-height: 1.6;
  margin-bottom: 1em;
}
.sec-page-entry .catch p a {
  font-size: larger;
  margin: 0 5px;
}
.sec-page-entry .catch p .note {
  display: block;
  font-size: smaller;
  color: #d60000;
}
@media screen and (max-width: 600px) {
  .sec-page-entry .entry-form {
    margin-bottom: 50px;
  }
}
.sec-page-entry .entry-form tr:last-child th,
.sec-page-entry .entry-form tr:last-child td {
  border-bottom: none;
}
.sec-page-entry .entry-form th {
  width: 200px;
  white-space: nowrap;
}
.sec-page-entry .entry-form th .req {
  background-color: #d60000;
  color: #fff;
  font-size: 10px;
  padding: 0 7px;
  border-radius: 3px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
}
.sec-page-entry .entry-form th .req::before {
  content: "必 須";
}
.sec-page-entry .entry-form th .req.no-req {
  background-color: #eee;
  color: #111;
}
.sec-page-entry .entry-form th .req.no-req::before {
  content: "任 意";
}
.sec-page-entry .entry-form .birthday {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .sec-page-entry .entry-form .birthday {
    flex-direction: column;
  }
}
.sec-page-entry .entry-form input[type=text],
.sec-page-entry .entry-form input[type=email] {
  border: solid 1px #ddd;
  width: 100%;
  height: 50px;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.sec-page-entry .entry-form input[type=text].txt-s,
.sec-page-entry .entry-form input[type=email].txt-s {
  width: 150px;
}
.sec-page-entry .entry-form input[type=text].txt-ss,
.sec-page-entry .entry-form input[type=email].txt-ss {
  width: 100px;
}
.sec-page-entry .entry-form input[type=text].input-error,
.sec-page-entry .entry-form input[type=email].input-error {
  border: solid 2px #d60000;
}
.sec-page-entry .entry-form textarea {
  border: solid 1px #ddd;
  width: 100%;
  height: 250px;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 6px;
  background-color: #f5f5f5;
  line-height: 1.6;
}
.sec-page-entry .entry-form textarea.input-error {
  border: solid 2px #d60000;
}
.sec-page-entry .entry-form select {
  border: solid 1px #ddd;
  font-size: 16px;
  height: 50px;
  padding: 5px 10px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.sec-page-entry .entry-form .radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .sec-page-entry .entry-form .radios {
    flex-direction: column;
  }
}
.sec-page-entry .entry-form .radios.column {
  flex-direction: column;
}
.sec-page-entry .entry-form .radios.column .wpcf7-form-control {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}
.sec-page-entry .entry-form label:has(input[type=radio]) {
  margin-right: 10px;
  cursor: pointer;
  border: solid 1px #ddd;
  border-radius: 6px;
  display: block;
  padding: 15px 25px;
}
.sec-page-entry .entry-form label:has(input[type=radio]):has(input[type=radio]:checked) {
  background-color: #f5f5f5;
}
.sec-page-entry .entry-form .note {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-page-entry .entry-form .note {
    font-size: 13px;
  }
}
.sec-page-entry .entry-form .error {
  color: #d60000;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-page-entry .entry-form .error {
    font-size: 13px;
  }
}
.sec-page-entry .entry-form .td-error label:has(input[type=radio]) {
  border: solid 2px #d60000;
}
.sec-page-entry .bt {
  border: none;
  cursor: pointer;
  margin: 0 auto;
}
.sec-page-entry .show-pop .note {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .sec-page-entry .show-pop .note {
    text-align: left;
  }
}
.sec-page-entry .show-pop .wrap-preview {
  min-height: 500px;
  margin-bottom: 30px;
}
.sec-page-entry .show-pop .wrap-bts {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .sec-page-entry .show-pop .wrap-bts {
    flex-direction: column;
  }
}

.sec-page-news .inner {
  max-width: 1000px;
}
.sec-page-news .title {
  font-size: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #333;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-news .title {
    font-size: 20px;
  }
}
.sec-page-news .post {
  margin-bottom: 30px;
  min-height: 300px;
}
.sec-page-news .post .date {
  display: block;
  margin-bottom: 30px;
  color: #999;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .post .date {
    font-size: 13px;
  }
}
.sec-page-news .post h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .post h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .post h3 {
    font-size: 16px;
  }
}
.sec-page-news .post p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .post p {
    font-size: 15px;
  }
}
.sec-page-news .post ul,
.sec-page-news .post ol {
  margin: 30px;
}
.sec-page-news .post li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .post li {
    font-size: 15px;
  }
}
.sec-page-news .post li:last-child {
  margin-bottom: 0;
}
.sec-page-news .post img {
  display: block;
  border-radius: 10px;
  width: auto;
  height: auto;
  margin: 40px auto;
  max-height: 700px;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .sec-page-news .post img {
    width: 100%;
    height: auto;
    max-height: inherit;
    max-width: inherit;
  }
}
.sec-page-news .post .bt {
  margin: 30px auto 0;
}
.sec-page-news .wrap-news-list {
  margin: 0 auto 50px;
}
.sec-page-news .wrap-news-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 20px 10px;
  border-bottom: solid 1px #ddd;
  font-size: 18px;
  transition: 0.4s;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .wrap-news-list li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-news-list li a {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 20px 10px 0px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.sec-page-news .wrap-news-list li a .date {
  color: #666;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .sec-page-news .wrap-news-list li a .date {
    font-size: 13px;
  }
}
@media (hover: hover) {
  .sec-page-news .wrap-news-list li a:hover {
    background-color: #f5f5f5;
    padding-left: 20px;
  }
  .sec-page-news .wrap-news-list li a:hover::after {
    right: 20px;
  }
}
.sec-page-news .wrap-news-list li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #111;
  border-right: solid 1.5px #111;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-news-list li a::after {
    right: 10px;
  }
}
.sec-page-news .wrap-news-list li a .new {
  color: #d60000;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
.sec-page-news .wp-pagenavi {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .sec-page-news .wp-pagenavi {
    margin-bottom: 20px;
  }
}
.sec-page-news .wp-pagenavi .current {
  display: block;
  padding: 10px 15px;
  margin-right: 10px;
  background-color: #0056a7;
  color: #fff;
  border: solid 1px #fff;
  border-radius: 5px;
  font-weight: bold;
}
.sec-page-news .wp-pagenavi a {
  display: block;
  padding: 10px 15px;
  margin-right: 10px;
  background-color: #fff;
  color: #0056a7;
  border: solid 1px #0056a7;
  border-radius: 5px;
  font-weight: bold;
}
@media (hover: hover) {
  .sec-page-news .wp-pagenavi a:hover {
    background-color: #0056a7;
    color: #fff;
    border: solid 1px #fff;
  }
}

.visible {
  opacity: 1;
  transition: opacity 0.6s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromTopOut {
  transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromBottomOut {
  transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromLeftOut {
  transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromRightOut {
  transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.4s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}/*# sourceMappingURL=common.css.map */