@charset "UTF-8";
.mb-sm, .c-contact .contact-form .submit-btn, .link-btn-wrap.job {
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .mb-sm, .c-contact .contact-form .submit-btn, .link-btn-wrap.job {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .mb-sm, .c-contact .contact-form .submit-btn, .link-btn-wrap.job {
    margin-bottom: 50px;
  }
}

.mb-md {
  margin-bottom: 50px;
}
@media screen and (min-width: 600px) {
  .mb-md {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 960px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

.mb-lr {
  margin-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .mb-lr {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 960px) {
  .mb-lr {
    margin-bottom: 100px;
  }
}

.pd-md {
  padding: 40px 0;
}
@media screen and (min-width: 600px) {
  .pd-md {
    padding: 50px 0;
  }
}
@media screen and (min-width: 960px) {
  .pd-md {
    padding: 80px 0;
  }
}

.pd-lr {
  padding: 60px 0;
}
@media screen and (min-width: 600px) {
  .pd-lr {
    padding: 80px 0;
  }
}
@media screen and (min-width: 960px) {
  .pd-lr {
    padding: 100px 0;
  }
}

.c-container {
  padding: 0 6vw;
}
@media screen and (min-width: 1200px) {
  .c-container {
    padding: 0 8vw;
  }
}
@media screen and (min-width: 1500px) {
  .c-container {
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

Stylesheet: ベーススタイル

******************************************************************/
html :where(img) {
  height: 100% !important;
  max-width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  color: rgb(16, 16, 16);
  letter-spacing: 0.08em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(1.4rem, 1.3rem + 0.4vw, 1.9rem);
  line-height: 1.8;
}

.superwrapper {
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 6vw 30px;
}
.breadcrumb li {
  color: #ccc;
  padding-right: 10px;
  flex-shrink: 0;
}
.breadcrumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
}
.breadcrumb li a {
  color: #2c6bc9;
  border-bottom: 1px solid #2c6bc9;
}
@media screen and (min-width: 1500px) {
  .breadcrumb {
    padding: 30px 0 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.link-btn-wrap {
  text-align: center;
}
.link-btn-wrap .link-btn {
  display: inline-block;
}
.link-btn-wrap .link-btn .btn,
.link-btn-wrap .link-btn a.btn,
.link-btn-wrap .link-btn button.btn {
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  color: #212529;
}
.link-btn-wrap .link-btn .btn.btn-flat,
.link-btn-wrap .link-btn a.btn.btn-flat,
.link-btn-wrap .link-btn button.btn.btn-flat {
  overflow: hidden;
  padding: 1.5rem 4rem;
  color: rgb(16, 16, 16);
  background: #f5f7f4;
}
.link-btn-wrap .link-btn .btn.btn-flat span,
.link-btn-wrap .link-btn a.btn.btn-flat span,
.link-btn-wrap .link-btn button.btn.btn-flat span {
  position: relative;
  z-index: 1;
}
.link-btn-wrap .link-btn .btn.btn-flat:hover,
.link-btn-wrap .link-btn a.btn.btn-flat:hover,
.link-btn-wrap .link-btn button.btn.btn-flat:hover {
  color: #fff;
}
.link-btn-wrap .link-btn .btn.btn-flat:hover::before,
.link-btn-wrap .link-btn a.btn.btn-flat:hover::before,
.link-btn-wrap .link-btn button.btn.btn-flat:hover::before {
  transform: rotate(45deg) translateX(0) translateY(-50%);
}
.link-btn-wrap .link-btn .btn.btn-flat:hover::after,
.link-btn-wrap .link-btn a.btn.btn-flat:hover::after,
.link-btn-wrap .link-btn button.btn.btn-flat:hover::after {
  transform: rotate(45deg) translateX(0) translateY(50%);
}
.link-btn-wrap .link-btn .btn.btn-flat::before,
.link-btn-wrap .link-btn a.btn.btn-flat::before,
.link-btn-wrap .link-btn button.btn.btn-flat::before {
  position: absolute;
  top: 0;
  left: calc(-150% + 50px);
  width: 150%;
  height: 500%;
  content: "";
  transition: all 0.5s ease-in-out;
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #1a4fa0;
}
.link-btn-wrap .link-btn .btn.btn-flat::after,
.link-btn-wrap .link-btn a.btn.btn-flat::after,
.link-btn-wrap .link-btn button.btn.btn-flat::after {
  position: absolute;
  top: -400%;
  right: calc(-150% + 50px);
  width: 150%;
  height: 500%;
  content: "";
  transition: all 0.5s ease-in-out;
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #1a4fa0;
}
.link-btn-wrap .link-btn #contactBtn::before {
  left: calc(-130% + 50px);
}
.link-btn-wrap .link-btn #contactBtn::after {
  right: calc(-130% + 50px);
}
.link-btn-wrap.job a {
  padding: 1.5rem 2rem !important;
}
.link-btn-wrap.rec a {
  padding: 1.5rem 2rem !important;
}

.c-topview {
  position: relative;
}
.c-topview__img {
  position: relative;
  height: 35vh;
  min-height: 180px;
}
.c-topview__img::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(16, 16, 16);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  opacity: 0.6;
}
.c-topview__title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  z-index: 600;
  color: #fff;
  font-weight: bold;
}
.c-topview__title .en {
  font-size: 3em;
  letter-spacing: 4px;
  color: #5a9be0;
}
.c-topview__title .ja {
  font-size: 1.1em;
  letter-spacing: 2px;
}

/*タイプライター*/
.Typing span {
  display: none;
}
.Typing::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
  opacity: 1;
}

/* アニメーションが完了したらカーソルを消すためのクラス */
.Typing.complete::after {
  display: none;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-title {
  position: relative;
}
.p-title .ja {
  font-size: 0.9em;
  line-height: 2;
}
.p-title .en {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  font-size: 2.4em;
  color: #2c6bc9;
  opacity: 0.15;
}

.c-title {
  text-align: center;
  position: relative;
}
.c-title .ja {
  font-size: 0.9em;
  letter-spacing: 2px;
  line-height: 2;
  font-weight: 400;
}
.c-title .en {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
  font-size: 2.4em;
  font-weight: bold;
  color: rgba(211, 211, 211, 0.3019607843);
}

.more-btn {
  text-align: center;
}
.more-btn__link {
  background-color: #ff7a00;
  display: inline-block;
  padding: 14px 0;
  border: 2px solid #ff7a00;
  width: 80%;
  max-width: 320px;
  z-index: 1;
}
.more-btn__link span {
  position: relative;
  font-weight: bold;
  color: #fff;
}
.more-btn__link span.text {
  padding-right: 30px;
}
.more-btn__link span.text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 10;
}
.more-btn__link.slide-bg {
  position: relative;
  overflow: hidden;
}
.more-btn__link.slide-bg .bg {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-101%);
  transition: transform 0.3s;
  z-index: -1;
}
.more-btn__link.slide-bg:hover {
  z-index: 1;
}
.more-btn__link.slide-bg:hover span {
  color: rgb(16, 16, 16);
  transform: none;
}
.more-btn__link.slide-bg:hover span.text::before {
  border-top: 2px solid #ff7a00;
  border-right: 2px solid #ff7a00;
}

.top-view {
  position: relative;
}
.top-view::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #2c6bc9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  opacity: 0.3;
}
.top-view .hero {
  position: relative;
}
.top-view .hero__text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 50px 3vw;
  text-align: center;
  z-index: 60;
  color: #fff;
  text-shadow: rgb(16, 16, 16) 1px 1px 1px;
  background-color: rgba(16, 16, 16, 0.5215686275);
}
.top-view .hero__text h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.p-message {
  padding-top: 60px;
  background: url(../images/home/bg-2.webp) no-repeat center/cover;
  position: relative;
}
.p-message .p-title {
  position: relative;
  z-index: 10;
}
.p-message__wrap {
  position: relative;
  z-index: 10;
}
.p-message__img {
  margin: 0 -6vw;
}
.p-message .more-btn {
  text-align: left;
  margin-top: 30px;
}
.p-message .more-btn__link {
  text-align: center;
}

.c-points__img {
  position: relative;
  z-index: 10;
}
.c-points__img img {
  aspect-ratio: 3/2;
  -o-object-position: top center;
     object-position: top center;
}
.c-points__desc {
  padding: 10vw 5vw;
  background-color: #333;
  color: #fff;
  margin: -10% 0 50px;
  width: 90%;
  margin-left: auto;
  position: relative;
  z-index: 20;
}
.c-points__desc .item-tit {
  font-size: 1.35em;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.c-points__desc .item-tit::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #ff7a00;
}
@media (min-width: 768px) {
  .c-points__img img {
    aspect-ratio: 16/9;
  }
  .c-points__desc {
    width: 90%;
    padding: 6vw 4vw;
    display: flex;
    gap: 30px;
  }
  .c-points__desc .item-tit {
    padding-right: 30px;
  }
  .c-points__desc .item-tit::after {
    width: 2px;
    height: 150px;
    left: auto;
    bottom: auto;
    right: 0;
    top: 0;
  }
  .c-points__desc .item-desc {
    flex: 1;
  }
}

.p-service {
  background: linear-gradient(135deg, #2c6bc9, #5a9be0, #b2d4fc);
}
.p-service .p-title {
  position: relative;
  z-index: 10;
  color: #fff;
}
.p-service .p-title .en {
  color: #fff;
}
.p-service__desc {
  color: #fff;
}
.p-service__list__item {
  border-top: 1px solid #b2d4fc;
}
.p-service__list__item:last-child {
  border-bottom: 1px solid #b2d4fc;
}
.p-service__list__item a {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.p-service__list__item a .num {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 2vw;
  font-size: 6em;
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
}
.p-service__list__item .Desc {
  flex: 1;
  padding: 0 5vw;
  position: relative;
}
.p-service__list__item .Desc::before {
  content: "";
  width: 3vw;
  height: 3vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5vw;
  margin: auto;
  transform: rotate(45deg);
}
.p-service__list__item .Desc h3 {
  font-size: 1.2em;
}
.p-service__list__item .Img {
  width: 30%;
  max-width: 150px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 959px) {
  .p-service__gallery {
    display: none;
  }
}

.p-menu {
  background-color: #f4f4f4;
}
.p-menu__list {
  display: grid;
  gap: 30px;
}
.p-menu__item a {
  display: block;
  color: rgb(16, 16, 16);
  position: relative;
}
.p-menu__item h3 {
  font-size: 1.8em;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #fff;
  position: absolute;
  top: 40%;
  left: 3vw;
  transform: translateY(-50%);
  z-index: 1;
}
.p-menu__item .Img {
  aspect-ratio: 16/9;
  position: relative;
}
.p-menu__item .Img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(16, 16, 16);
  opacity: 0.6;
}
.p-menu__item p {
  background-color: #2c6bc9;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.p-menu__item p::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.p-contact {
  text-align: center;
  position: relative;
  background: url(../images/home/bg-1.webp) no-repeat center/cover;
}
.p-contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(16, 16, 16);
  opacity: 0.6;
}
.p-contact .p-title {
  color: #fff;
}
.p-contact .p-title .ja {
  position: relative;
  z-index: 20;
}
.p-contact .p-title .en {
  z-index: 15;
  width: 100%;
  color: #ffffff;
}
.p-contact__tel {
  padding: 20px 10px;
  background-color: #fff;
  color: rgb(16, 16, 16);
  display: inline-block;
  position: relative;
  z-index: 10;
  border: 2px solid rgb(83, 83, 83);
  text-align: center;
}
.p-contact__tel a {
  color: rgb(16, 16, 16);
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
  padding-left: 35px;
}
.p-contact__tel a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  height: 30px;
  width: 30px;
  background-image: url(../images/common/tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-contact__tel#bnr2 {
  margin: 0 0 20px 0;
}
.p-contact__tel#bnr2 a::before {
  height: 20px;
  background-image: url(../images/common/mail.svg);
}
@media (max-width: 599px) {
  .p-contact__tel {
    width: 80%;
    max-width: 300px;
  }
}

.p-footer {
  padding: 50px 0 30px;
  background: #b2d4fc;
}
.p-footer__logo {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  position: relative;
}
.p-footer__logo::before {
  content: "";
  width: 90px;
  height: 50px;
  background: url(../images/common/logo-mark.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-footer__logo img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 320px;
}
.p-footer__nav {
  margin-bottom: 40px;
}
.p-footer__nav li span {
  display: block;
  border-bottom: 1px solid #2c6bc9;
}
.p-footer__nav li:nth-child(1) span {
  border-top: 1px solid #2c6bc9;
}
.p-footer__nav li .c-txt-sm {
  position: relative;
  font-size: 16px;
  color: rgb(16, 16, 16);
  padding: 8px 15px;
}
.p-footer__nav li .c-txt-sm::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2c6bc9;
  border-right: 2px solid #2c6bc9;
  transform: rotate(45deg);
}
.p-footer .copyright {
  text-align: center;
  font-size: 0.8em;
}

.c-company .c-message__img {
  aspect-ratio: 5/4;
  margin: 0 -6vw 30px;
}
.c-company .c-message__desc p {
  margin-bottom: 15px;
}
.c-company .c-message__name {
  margin-top: 30px;
  text-align: right;
}
.c-company .c-message__name h3 {
  font-size: 1.3em;
  line-height: 2.2;
}
.c-company .c-message__name h3 small {
  font-size: 0.75em;
  display: block;
}
.c-company .c-policy {
  background-color: #f4f4f4;
}
.c-company .c-policy .c-title {
  position: relative;
  z-index: 10;
}
.c-company .c-policy__list {
  display: grid;
  gap: 20px;
}
.c-company .c-policy__list__item {
  background-color: #fff;
  padding: 30px;
}
.c-company .c-policy__list__item .Wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.c-company .c-policy__list__item .Wrap .Icon {
  width: 30%;
  max-width: 120px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.c-company .c-policy__list__item .Wrap .Icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-company .c-policy__list__item .Wrap h3 {
  flex: 1;
  font-size: 1.6em;
}
.c-company .c-policy__list__item .Wrap h3 span {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  color: #ff7a00;
  padding-left: 30px;
  position: relative;
}
.c-company .c-policy__list__item .Wrap h3 span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #ff7a00;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-company .c-about__desc tr {
  border-top: 1px solid #e5e5e5;
}
.c-company .c-about__desc tr:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.c-company .c-about__desc th {
  display: block;
  width: 100%;
  padding: 12px 5px 0;
}
.c-company .c-about__desc td {
  display: block;
  width: 100%;
  padding: 0px 5px 12px;
}
.c-company .c-about__desc td a {
  color: #2c6bc9;
  text-decoration: underline;
}

.c-menu {
  background-color: #2c6bc9;
}
.c-menu__list {
  display: grid;
  gap: 15px;
  margin-bottom: 0;
}
.c-menu__list__item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.c-menu__list__item a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-menu__list__item a:hover {
    opacity: 0.7;
  }
}
.c-menu__list__item a {
  position: relative;
}
.c-menu__list__item a::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-menu__list__item a::after {
  position: absolute;
  content: "";
  /* 上向きの二等辺三角形の場合 */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #2c6bc9;
  /* 色は任意に変更可能 */
  top: calc(50% + 2px);
  right: 5px;
  transform: translateY(-50%) rotate(180deg);
}

#service01,
#service02,
#service03,
#service04 {
  scroll-margin: 90px;
}

.c-service .service01__list {
  display: grid;
  gap: 30px;
}
.c-service .service01__list__item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
.c-service .service01__list__item .Img {
  margin-bottom: 20px;
}
.c-service .service01__list__item .Img img {
  aspect-ratio: 3/2;
}
.c-service .service01__list__item .Desc h3 {
  font-size: 1.3em;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid #2c6bc9;
}
.c-service .service02 .Img {
  aspect-ratio: 3/2;
  max-width: 500px;
  margin: 0 auto 30px;
}
.c-service .service02 .Desc .onlyPC {
  display: none;
}

.c-product {
  background-color: #f4f4f4;
}
.c-product .c-title {
  position: relative;
  z-index: 10;
}
.c-product__list__item {
  background-color: #fff;
  padding: 30px 20px;
}
.c-product__list__item .Desc {
  margin-bottom: 30px;
}
.c-product__list__item .Desc h3 {
  font-size: 1.3em;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid #2c6bc9;
}
.c-product__list__item .Img {
  display: grid;
  gap: 10px;
}
.c-product__list__item .Img img {
  aspect-ratio: 16/9;
  display: block;
}

.c-contact .contact-form {
  text-align: center;
}
.c-contact .contact-form .wrap {
  max-width: 540px;
  margin: 0 auto;
}
.c-contact .contact-form input, .c-contact .contact-form textarea {
  width: 100%;
  border: 1px solid #586166;
  padding: 8px;
}
.c-contact .contact-form textarea {
  margin-bottom: 0;
}
.c-contact .contact-form input {
  height: 45px;
}
.c-contact .contact-form dl {
  text-align: left;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
}
.c-contact .contact-form dt {
  font-size: 1.05em;
}
.c-contact .contact-form .must {
  position: relative;
  padding: 5px 0;
}
.c-contact .contact-form .must p {
  display: inline-block;
}
.c-contact .contact-form .must::after {
  content: "必須";
  font-size: 0.8em;
  color: #fff;
  background-color: #ff7a00;
  padding: 3px 8px;
  margin-left: 5px;
}
.c-contact .contact-form .free {
  padding: 5px 0;
}
.c-contact .contact-form .wpcf7 form.invalid .wpcf7-response-output {
  border: 1px solid red;
}
.c-contact .contact-form .wpcf7-acceptance input {
  height: 20px;
  width: 20px;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  background-color: initial;
  border: initial;
  padding: initial;
  cursor: pointer;
}
.c-contact .contact-form .ms-1 {
  color: rgb(33, 128, 218);
  border-bottom: 1px solid rgb(33, 128, 218);
  display: inline-block;
  line-height: 1;
  font-size: 1.1em;
}
.c-contact .contact-form .privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
.c-contact .contact-form .submit-btn {
  text-align: center;
}
.c-contact .contact-form .submit-btn input:disabled {
  border-color: #858585;
}
.c-contact .contact-form .submit-btn input {
  border-color: rgb(16, 16, 16);
  width: 70%;
  max-width: 320px;
}
.c-contact .contact-form .ajax-loader {
  display: none;
}
.c-contact .contact-form .wpcf7-spinner {
  display: none;
}
.c-contact .grecaptcha-badge {
  box-shadow: none !important;
  width: 100% !important;
}
.c-contact .grecaptcha-badge iframe {
  box-shadow: grey 0px 0px 5px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-privacy-title {
  text-align: center;
  font-size: 1.65em;
  display: block;
  margin-bottom: 50px;
  font-weight: bold;
}
.c-privacy h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.c-privacy-item {
  margin-bottom: 30px;
}
.c-privacy-desc {
  margin-bottom: 50px;
}

.c-thanks-title {
  text-align: center;
  font-size: 1.6em;
  display: block;
  margin-bottom: 30px;
  font-weight: bold;
}
.c-thanks h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.c-thanks-item {
  margin-bottom: 30px;
}
.c-thanks-desc {
  margin-bottom: 50px;
}

.swiper-container {
  overflow: visible !important;
  height: 80vh;
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide-active img {
  animation: zoom 4.5s forwards;
  -o-object-position: top center;
     object-position: top center;
}

@keyframes zoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.p-header {
  height: 64px;
  width: 100%;
}
.p-header .logo__img {
  display: inline-block;
  margin: 8px 10px 0 10px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
}
.p-header .logo__img a {
  position: relative;
  display: inline-block;
  padding-left: 50px;
}
.p-header .logo__img a::before {
  content: "";
  width: 44px;
  height: 30px;
  background: url(../images/common/logo-mark.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-header .logo {
  background-image: url(../images/common/logo.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 20px;
  width: 200px;
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .p-header .logo__img {
    margin: 10px 10px 0 15px;
  }
  .p-header .logo__img a {
    padding-left: 65px;
  }
  .p-header .logo__img a::before {
    width: 60px;
    height: 35px;
  }
  .p-header .logo {
    height: 22px;
    width: 280px;
  }
}
@media (max-width: 959px) {
  .p-header .pc-container,
  .p-header .pc-navbtn {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-header {
    height: 100px;
  }
  .p-header .mobile-container,
  .p-header .sp-navbtn,
  .p-header .mobile-button,
  .p-header .mobile-menu {
    display: none !important;
  }
  .p-header .pc-container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 8000;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-bottom: 5px solid #2c6bc9;
  }
  .p-header .pc-container .pc-nav-list {
    display: flex;
    margin-bottom: 0;
  }
  .p-header .pc-container .pc-nav-item {
    font-size: 17px;
    padding-right: 3.5vw;
    transition: all 0.3s;
    position: relative;
    z-index: 9000;
  }
  .p-header .pc-container .pc-nav-item a {
    color: rgb(16, 16, 16);
    transition: all 0.3s;
  }
  .p-header .pc-container .pc-nav-item a:hover {
    opacity: 0.6;
  }
  .p-header .pc-container .hoverItem {
    position: relative;
  }
  .p-header .pc-container .hoverItem p {
    font-size: 17px;
    position: relative;
    cursor: pointer;
  }
  .p-header .pc-container .hoverItem p::before {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    margin: auto;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid rgb(16, 16, 16);
    border-right: 2px solid rgb(16, 16, 16);
    transform: rotate(135deg);
    transition: transform 0.3s ease;
  }
  .p-header .pc-container .hoverItem .dropDown {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 150%;
    left: -50%;
    width: 260px;
    padding: 15px 10px 5px;
    background-color: #2c6bc9;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .p-header .pc-container .hoverItem .dropDown li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5019607843);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }
  .p-header .pc-container .hoverItem .dropDown li:hover {
    opacity: 0.3;
  }
  .p-header .pc-container .hoverItem .dropDown li a {
    font-size: 17px;
  }
  .p-header .pc-container .hoverItem .dropDown li a span {
    color: #fff;
  }
  .p-header .pc-container .hoverItem .dropDown li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .p-header .pc-container .hoverItem:hover p::before {
    transform: rotate(315deg);
  }
  .p-header .pc-container .hoverItem:hover .dropDown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .p-header .pc-container .hoverItem:hover .dropDown li {
    opacity: 1;
    transform: translateY(0);
  }
  .p-header .pc-container .hoverItem:hover .dropDown li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .p-header .pc-container .hoverItem:hover .dropDown li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .p-header .pc-container .hoverItem:hover .dropDown li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .p-header .pc-container .hoverItem:hover .dropDown li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .p-header .pc-container .hoverItem:hover .dropDown li:nth-child(5) {
    transition-delay: 0.5s;
  }
}
@media screen and (min-width: 1200px) {
  .p-header .pc-container .pc-nav-item {
    font-size: 19px;
  }
  .p-header .pc-container .hoverItem p {
    font-size: 19px;
  }
  .p-header .pc-container .hoverItem p::before {
    right: -18px;
    width: 10px;
    height: 10px;
  }
  .p-header .pc-container .hoverItem .dropDown {
    width: 300px;
    padding: 15px 20px 5px;
  }
  .p-header .pc-container .hoverItem .dropDown li a {
    font-size: 19px;
  }
  .p-header .pc-container .hoverItem .dropDown li a span {
    color: #fff;
  }
  .p-header .pc-container .logo__img {
    margin: 10px 10px 0 20px;
  }
  .p-header .pc-container .logo__img a {
    padding-left: 75px;
  }
  .p-header .pc-container .logo__img a::before {
    width: 70px;
    height: 40px;
  }
  .p-header .pc-container .logo__img .logo {
    height: 30px;
    width: 330px;
  }
}
.p-header .sp-navbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 10vh;
  min-height: 60px;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s;
  background-color: #fff;
}
.p-header .sp-navbtn__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header .sp-navbtn__container li {
  width: 100%;
  height: 100%;
  background-color: #2c6bc9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-header .sp-navbtn__container a {
  position: relative;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: bold;
  padding-top: 28px;
}
.p-header .sp-navbtn__container a::before {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  height: 22px;
  width: 22px;
  background-image: url(../images/common/tel-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-header .sp-navbtn__container .sp2 {
  background-color: #5a9be0;
}
.p-header .sp-navbtn__container .sp2 a::before {
  background-image: url(../images/common/ico-mail-wh.png);
}
.p-header .pc-navbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 11vh;
  min-height: 70px;
  max-height: 86px;
  width: 100%;
  z-index: 5000;
  transition: all 0.3s;
  background-color: #fff;
}
.p-header .pc-navbtn__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header .pc-navbtn__container li {
  width: 100%;
  height: 100%;
  background-color: #2c6bc9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.p-header .pc-navbtn__container li p {
  font-size: 14px;
  padding-left: 35px;
}
.p-header .pc-navbtn__container a {
  position: relative;
  color: rgb(16, 16, 16);
  letter-spacing: 2px;
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2;
  padding-left: 35px;
  height: 100%;
}
.p-header .pc-navbtn__container a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  height: 25px;
  width: 25px;
  background-image: url(../images/common/tel-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-header .pc-navbtn__container .sp2 {
  background-color: #5a9be0;
}
.p-header .pc-navbtn__container .sp2 a {
  font-size: 22px;
}
.p-header .pc-navbtn__container .sp2 a::before {
  background-image: url(../images/common/ico-mail-wh.png);
}
.p-header .hide.sp-navbtn {
  transform: translateY(100%);
  transition: all 0.4s;
}
.p-header .hide.pc-navbtn {
  transform: translateY(100%);
  transition: all 0.4s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.5s;
  z-index: 8000;
}
.mobile-menu__nav {
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8392156863);
}
.mobile-menu__list {
  width: 100%;
  text-align: center;
  list-style: none;
  padding-top: 100px;
}
.mobile-menu__item {
  opacity: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #d0d0d0;
}
.mobile-menu__item a {
  color: rgb(16, 16, 16) !important;
}

.mobile-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  height: 64px;
  width: 100%;
  background-color: #fff;
  border-bottom: 5px solid #2c6bc9;
  display: flex;
  align-items: center;
}
.mobile-container .mobile-button {
  position: fixed;
  top: 19px;
  right: 15px;
  z-index: 9999;
}
.mobile-container .mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
  display: block;
}
.mobile-container .mobile-menu__btn > span {
  background-color: #2c6bc9;
  width: 30px;
  height: 2px;
  display: block;
  margin-bottom: 7px;
  transition: transform 0.7s;
  opacity: 1;
}
.mobile-container .mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .mobile-container .mobile-menu__btn span {
    width: 35px;
    margin-bottom: 9px;
  }
  .mobile-container .mobile-menu__btn span:nth-child(2) {
    width: 25px;
  }
}

.menu-open.mobile-menu {
  z-index: 8000;
  transition: all 0.5s;
  transform: none;
}
.menu-open.mobile-menu nav li {
  opacity: 1;
  transition: 0.1s;
}
.menu-open.mobile-menu nav li:nth-child(1) {
  transition-delay: 0.03s;
}
.menu-open.mobile-menu nav li:nth-child(2) {
  transition-delay: 0.06s;
}
.menu-open.mobile-menu nav li:nth-child(3) {
  transition-delay: 0.09s;
}
.menu-open.mobile-menu nav li:nth-child(4) {
  transition-delay: 0.12s;
}
.menu-open.mobile-menu nav li:nth-child(5) {
  transition-delay: 0.15s;
}
.menu-open.mobile-menu nav li:nth-child(6) {
  transition-delay: 0.18s;
}
.menu-open.mobile-menu nav li:nth-child(7) {
  transition-delay: 0.21s;
}
.menu-open.mobile-menu nav li:nth-child(8) {
  transition-delay: 0.24s;
}
.menu-open.mobile-menu nav li:nth-child(9) {
  transition-delay: 0.27s;
}
.menu-open.mobile-menu nav li:nth-child(10) {
  transition-delay: 0.3s;
}
.menu-open .mobile-menu__btn > span {
  background-color: #2c6bc9 !important;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(9px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 140ms;
  transform: scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-9px) rotate(-135deg);
}
@media screen and (min-width: 600px) {
  .menu-open .mobile-menu__btn > span:nth-child(1) {
    transition-delay: 70ms;
    transform: translateY(11px) rotate(135deg);
  }
  .menu-open .mobile-menu__btn > span:nth-child(3) {
    transition-delay: 140ms;
    transform: translateY(-11px) rotate(-135deg);
  }
}

.clip-js,
.clip-js1,
.clip-js2,
.clip-js3 {
  transition: all 3s ease;
}
.clip-js.left,
.clip-js1.left,
.clip-js2.left,
.clip-js3.left {
  clip-path: inset(0 100% 0 0);
}
.clip-js.right,
.clip-js1.right,
.clip-js2.right,
.clip-js3.right {
  clip-path: inset(0 0 0 100%);
}
.clip-js.top,
.clip-js1.top,
.clip-js2.top,
.clip-js3.top {
  clip-path: inset(0 0 100% 0);
}
.clip-js.top-left,
.clip-js1.top-left,
.clip-js2.top-left,
.clip-js3.top-left {
  clip-path: inset(0 100% 100% 0);
}
.clip-js.bottom,
.clip-js1.bottom,
.clip-js2.bottom,
.clip-js3.bottom {
  clip-path: inset(100% 0 0 0);
}
.clip-js.center,
.clip-js1.center,
.clip-js2.center,
.clip-js3.center {
  clip-path: inset(100%);
}
.clip-js.circle,
.clip-js1.circle,
.clip-js2.circle,
.clip-js3.circle {
  clip-path: circle(0 at 50% 50%);
}
.clip-js.skew,
.clip-js1.skew,
.clip-js2.skew,
.clip-js3.skew {
  clip-path: polygon(0 0, 0 0, 0 0);
}
.clip-js.transform,
.clip-js1.transform,
.clip-js2.transform,
.clip-js3.transform {
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: all 1.4s cubic-bezier(0.55, 0.06, 0.33, 1.85);
  transform: translateX(-30px) scale(0.86) skew(8deg);
}
.clip-js.reveal.left, .clip-js.reveal.right, .clip-js.reveal.top, .clip-js.reveal.top-left, .clip-js.reveal.bottom, .clip-js.reveal.center,
.clip-js1.reveal.left,
.clip-js1.reveal.right,
.clip-js1.reveal.top,
.clip-js1.reveal.top-left,
.clip-js1.reveal.bottom,
.clip-js1.reveal.center,
.clip-js2.reveal.left,
.clip-js2.reveal.right,
.clip-js2.reveal.top,
.clip-js2.reveal.top-left,
.clip-js2.reveal.bottom,
.clip-js2.reveal.center,
.clip-js3.reveal.left,
.clip-js3.reveal.right,
.clip-js3.reveal.top,
.clip-js3.reveal.top-left,
.clip-js3.reveal.bottom,
.clip-js3.reveal.center {
  clip-path: inset(0);
}
.clip-js.reveal.circle,
.clip-js1.reveal.circle,
.clip-js2.reveal.circle,
.clip-js3.reveal.circle {
  clip-path: circle(100% at 50% 50%);
}
.clip-js.reveal.skew,
.clip-js1.reveal.skew,
.clip-js2.reveal.skew,
.clip-js3.reveal.skew {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}
.clip-js.reveal.transform,
.clip-js1.reveal.transform,
.clip-js2.reveal.transform,
.clip-js3.reveal.transform {
  clip-path: polygon(0 0, 200% 0, 0 200%);
  transform: translateX(0) scale(1) skew(0);
}

.clip-js1 {
  transition: all 1.3s ease;
}

.clip-js2 {
  transition: all 4s ease;
}

.clip-js3 {
  transition: all 2s ease;
}

.clip-js-bg {
  transition: all 1.8s ease;
}
.clip-js-bg.skew {
  transition: all 1s ease;
  transform: translate(-60%, 60%);
}
.clip-js-bg.skew2 {
  transition: all 1s ease;
  transform: translate(60%, 60%);
}
.clip-js-bg.reveal.skew {
  transform: translate(0);
}
.clip-js-bg.reveal.skew2 {
  transform: translate(0);
}

.appear.up .item {
  transform: translateY(20px);
}

.appear.down .item {
  transform: translateY(20px);
}

.appear.left .item {
  transform: translateX(30px);
}

.appear.right .item {
  transform: translateX(-30px);
}

.appear.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear-l.up .item {
  transform: translateY(20px);
}

.appear-l.down .item {
  transform: translateY(20px);
}

.appear-l.left .item {
  transform: translateX(30px);
}

.appear-l.right .item {
  transform: translateX(-30px);
}

.appear-l.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear .item {
  transition: all 0.6s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 5s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 5.5s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 6s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 6.5s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 7s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 7.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 8s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 8.5s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 9s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 9.5s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 10s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 10.5s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 11s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 11.5s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 12s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 12.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 13s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 13.5s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 14s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 14.5s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 15s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 15.5s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 16s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 16.5s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 17s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 17.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 18s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 18.5s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 19s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 19.5s;
}

.appear-l .item {
  transition: all 0.6s;
  opacity: 0;
}
.appear-l.inview-l .item {
  opacity: 1;
  transform: none;
}
.appear-l.inview-l .item:nth-child(1) {
  transition-delay: 0.9s;
}
.appear-l.inview-l .item:nth-child(2) {
  transition-delay: 1.8s;
}
.appear-l.inview-l .item:nth-child(3) {
  transition-delay: 2.7s;
}
.appear-l.inview-l .item:nth-child(4) {
  transition-delay: 3.6s;
}
.appear-l.inview-l .item:nth-child(5) {
  transition-delay: 4.5s;
}
.appear-l.inview-l .item:nth-child(6) {
  transition-delay: 5.4s;
}
.appear-l.inview-l .item:nth-child(7) {
  transition-delay: 6.3s;
}
.appear-l.inview-l .item:nth-child(8) {
  transition-delay: 7.2s;
}
.appear-l.inview-l .item:nth-child(9) {
  transition-delay: 8.1s;
}
.appear-l.inview-l .item:nth-child(10) {
  transition-delay: 9s;
}
.appear-l.inview-l .item:nth-child(11) {
  transition-delay: 9.9s;
}
.appear-l.inview-l .item:nth-child(12) {
  transition-delay: 10.8s;
}
.appear-l.inview-l .item:nth-child(13) {
  transition-delay: 11.7s;
}
.appear-l.inview-l .item:nth-child(14) {
  transition-delay: 12.6s;
}
.appear-l.inview-l .item:nth-child(15) {
  transition-delay: 13.5s;
}
.appear-l.inview-l .item:nth-child(16) {
  transition-delay: 14.4s;
}
.appear-l.inview-l .item:nth-child(17) {
  transition-delay: 15.3s;
}
.appear-l.inview-l .item:nth-child(18) {
  transition-delay: 16.2s;
}
.appear-l.inview-l .item:nth-child(19) {
  transition-delay: 17.1s;
}
.appear-l.inview-l .item:nth-child(20) {
  transition-delay: 18s;
}
.appear-l.inview-l .item:nth-child(21) {
  transition-delay: 18.9s;
}
.appear-l.inview-l .item:nth-child(22) {
  transition-delay: 19.8s;
}
.appear-l.inview-l .item:nth-child(23) {
  transition-delay: 20.7s;
}
.appear-l.inview-l .item:nth-child(24) {
  transition-delay: 21.6s;
}
.appear-l.inview-l .item:nth-child(25) {
  transition-delay: 22.5s;
}
.appear-l.inview-l .item:nth-child(26) {
  transition-delay: 23.4s;
}
.appear-l.inview-l .item:nth-child(27) {
  transition-delay: 24.3s;
}
.appear-l.inview-l .item:nth-child(28) {
  transition-delay: 25.2s;
}
.appear-l.inview-l .item:nth-child(29) {
  transition-delay: 26.1s;
}
.appear-l.inview-l .item:nth-child(30) {
  transition-delay: 27s;
}
.appear-l.inview-l .item:nth-child(31) {
  transition-delay: 27.9s;
}
.appear-l.inview-l .item:nth-child(32) {
  transition-delay: 28.8s;
}
.appear-l.inview-l .item:nth-child(33) {
  transition-delay: 29.7s;
}
.appear-l.inview-l .item:nth-child(34) {
  transition-delay: 30.6s;
}
.appear-l.inview-l .item:nth-child(35) {
  transition-delay: 31.5s;
}
.appear-l.inview-l .item:nth-child(36) {
  transition-delay: 32.4s;
}
.appear-l.inview-l .item:nth-child(37) {
  transition-delay: 33.3s;
}
.appear-l.inview-l .item:nth-child(38) {
  transition-delay: 34.2s;
}
.appear-l.inview-l .item:nth-child(39) {
  transition-delay: 35.1s;
}

.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2c6bc9;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom {
  opacity: 0;
}
.inview .img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

@media (min-width: 600px) {
  .c-topview__img {
    height: 40vh;
  }
  .c-topview__title .en {
    font-size: 3.8em;
    line-height: 1.4;
  }
  .p-title .ja,
  .c-title .ja {
    font-size: 1.1em;
  }
  .p-title .en,
  .c-title .en {
    font-size: 3.2em;
  }
  .more-btn__link {
    padding: 20px 0;
  }
  .p-message {
    padding-top: 80px;
  }
  .p-menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-contact__tel {
    width: 80%;
    max-width: 360px;
  }
  .p-footer {
    padding: 60px 0 30px;
  }
  .p-footer__logo {
    margin-bottom: 45px;
  }
  .p-footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
  .p-footer__nav ul li:nth-child(2) span {
    border-top: 1px solid #2c6bc9;
  }
  .c-company .c-message__img {
    aspect-ratio: 16/9;
    margin: 0 -6vw 50px;
  }
  .c-company .c-message__name {
    margin-top: 50px;
  }
  .c-company .c-policy__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-company .c-policy__list__item {
    padding: 20px;
  }
  .c-company .c-about__desc tr {
    display: flex;
    border: none;
  }
  .c-company .c-about__desc th {
    padding: 18px 5px;
    flex-basis: 30%;
    border-bottom: 2px solid #2c6bc9;
    display: flex;
    align-items: center;
  }
  .c-company .c-about__desc td {
    padding: 18px 15px;
    flex-basis: 70%;
    border-bottom: 2px solid #e5e5e5;
  }
  .c-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .c-service .service01__list__item {
    display: flex;
    justify-content: space-between;
    gap: 4% 0;
  }
  .c-service .service01__list__item .Img {
    flex-basis: 48%;
    margin-bottom: 0;
  }
  .c-service .service01__list__item .Desc {
    flex-basis: 48%;
  }
  .c-product__list__item {
    padding: 40px 30px;
  }
  .c-product__list__item .Desc {
    margin-bottom: 40px;
  }
  .c-product__list__item .Img {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-contact .contact-form .c-contact-text {
    font-size: 1.1em;
  }
  .c-contact .contact-form .c-contact-text br {
    display: none;
  }
  .c-contact .contact-form .submit-btn input {
    width: 70%;
    max-width: 320px;
    height: 64px;
    font-size: 20px;
  }
  .c-contact .contact-form .wpcf7-acceptance input {
    height: 24px;
    width: 24px;
  }
  .c-thanks-title br {
    display: none;
  }
}
@media (min-width: 960px) {
  .c-topview__img {
    height: 50vh;
    min-height: 320px;
  }
  .c-topview__title .en {
    font-size: 4.6em;
  }
  .c-topview__title .ja {
    font-size: 1.4em;
  }
  .p-title .ja,
  .c-title .ja {
    font-size: 1.4em;
  }
  .p-title .en,
  .c-title .en {
    font-size: 3.8em;
  }
  .breadcrumb {
    padding: 30px 6vw 50px;
  }
  .breadcrumb li:last-child {
    max-width: none;
  }
  .link-btn-wrap .link-btn .btn,
  .link-btn-wrap .link-btn a.btn,
  .link-btn-wrap .link-btn button.btn {
    font-size: 1.4rem;
  }
  .link-btn-wrap .link-btn .btn.btn-flat::before,
  .link-btn-wrap .link-btn a.btn.btn-flat::before,
  .link-btn-wrap .link-btn button.btn.btn-flat::before {
    left: calc(-140% + 50px);
  }
  .link-btn-wrap .link-btn .btn.btn-flat::after,
  .link-btn-wrap .link-btn a.btn.btn-flat::after,
  .link-btn-wrap .link-btn button.btn.btn-flat::after {
    right: calc(-140% + 50px);
  }
  .more-btn__link {
    padding: 24px 0;
    max-width: 380px;
  }
  .top-view .hero__text {
    padding: 70px 0;
  }
  .top-view .hero__text h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .top-view .hero__text .onlySP {
    display: none;
  }
  .p-message {
    padding-top: 100px;
    background-attachment: fixed;
  }
  .p-message__wrap {
    display: flex;
    justify-content: space-between;
  }
  .p-message__desc {
    flex-basis: 52%;
  }
  .p-message__img {
    flex-basis: calc(44% + 6vw);
    margin: 0 -6vw 0 0;
  }
  .c-points__img {
    margin-right: 20vw;
  }
  .c-points__img img {
    aspect-ratio: 2/1;
  }
  .c-points__desc {
    margin: -5% 0 50px;
    margin-left: auto;
  }
  .c-points__desc .item-tit {
    font-size: 1.5em;
  }
  .p-service__cols {
    display: flex;
    align-items: stretch;
  }
  .p-service__list {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .p-service__list__item {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .p-service__list__item a {
    height: 100%;
    width: 100%;
    transition: all 0.3s;
  }
  .p-service__list__item a .num {
    left: 30px;
    font-size: 4.6em;
  }
  .p-service__list__item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .p-service__list__item .Img {
    display: none;
  }
  .p-service__list__item .Desc::before {
    width: 16px;
    height: 16px;
  }
  .p-service__gallery {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    min-height: 400px;
  }
  .p-service__gallery__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .p-service__gallery__item.is-active {
    opacity: 1;
  }
  .p-service__gallery__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .p-menu__item h3 {
    font-size: 2em;
  }
  .p-menu__item p {
    padding: 15px 20px;
  }
  .p-menu__item p::after {
    right: 20px;
  }
  .p-contact ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
  }
  .p-contact__tel {
    width: 100%;
    padding: 25px 15px;
    max-width: none;
  }
  .p-contact__tel a {
    padding-left: 40px;
  }
  .p-contact__tel#bnr2 {
    margin: 0;
  }
  .p-footer {
    padding: 80px 0 30px;
  }
  .p-footer .c-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
  }
  .p-footer__logo {
    margin-bottom: 0;
    padding-top: 40px;
  }
  .p-footer__logo::before {
    width: 120px;
    height: 65px;
  }
  .p-footer__logo img {
    width: 100%;
    max-width: 360px;
  }
  .p-footer__nav {
    margin-bottom: 0;
    flex: 1;
  }
  .p-footer__nav ul {
    width: 100%;
  }
  .c-company .c-message__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .c-company .c-message__img {
    flex-basis: calc(38% + 6vw);
    margin: 0 0 0 -6vw;
    aspect-ratio: 5/4;
  }
  .c-company .c-message__desc {
    flex-basis: 58%;
  }
  .c-company .c-policy__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-company .c-policy__desc {
    text-align: center;
  }
  .c-company .c-about__desc {
    max-width: 1000px;
    margin: 0 auto;
  }
  .c-company .c-about__desc th {
    padding: 22px 5px;
    flex-basis: 25%;
  }
  .c-company .c-about__desc td {
    padding: 22px 30px;
    flex-basis: 75%;
  }
  .c-menu__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  #service01,
  #service02,
  #service03,
  #service04 {
    scroll-margin: 140px;
  }
  .c-service .service01__list {
    gap: 50px;
  }
  .c-service .service01__list__item {
    padding-bottom: 50px;
  }
  .c-service .service01__list__item .Img img {
    aspect-ratio: 16/9;
  }
  .c-service .service01__list__item .Desc h3 {
    font-size: 1.5em;
    padding-bottom: 12px;
    margin-bottom: 22px;
  }
  .c-service .service02 .Img {
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .c-service .service02 .Desc {
    text-align: center;
  }
  .c-service .service02 .Desc .onlyPC {
    display: block;
  }
  .c-product__list__item {
    display: flex;
    justify-content: space-between;
  }
  .c-product__list__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .c-product__list__item .Desc {
    flex-basis: 38%;
  }
  .c-product__list__item .Desc h3 {
    font-size: 1.5em;
    padding-bottom: 12px;
    margin-bottom: 22px;
  }
  .c-product__list__item .Img {
    flex-basis: 58%;
    gap: 10px;
  }
  .c-contact .contact-form .wrap {
    max-width: 680px;
  }
  .c-contact .contact-form input, .c-contact .contact-form textarea {
    padding: 12px;
  }
  .c-contact .contact-form input {
    height: 55px;
  }
  .c-contact .contact-form dl {
    padding-bottom: 25px;
  }
  .c-contact .contact-form dt {
    font-size: 1.1em;
  }
  .c-contact .contact-form .must {
    padding: 8px 0;
  }
  .c-contact .contact-form .free {
    padding: 8px 0;
  }
  .c-contact .contact-form .ms-1 {
    font-size: 1.2em;
  }
  .c-contact .contact-form .privacy {
    margin-bottom: 45px;
    gap: 12px;
  }
  .c-privacy-title {
    font-size: 2em;
  }
  .c-privacy h3 {
    font-size: 1.3em;
  }
  .c-privacy-desc {
    margin-bottom: 70px;
  }
  .c-thanks-title {
    font-size: 1.8em;
    margin-bottom: 50px;
  }
  .c-thanks h3 {
    font-size: 1.3em;
  }
  .c-thanks-desc {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .c-topview__img {
    max-height: 480px;
  }
  .c-topview__title .en {
    font-size: 5.2em;
  }
  .c-topview__title .ja {
    font-size: 1.6em;
  }
  .p-title .ja,
  .c-title .ja {
    font-size: 1.5em;
  }
  .p-title .en,
  .c-title .en {
    font-size: 4.2em;
  }
  .p-service__cols {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-service__list {
    border-left: 1px solid #5a9be0;
  }
  .p-service__list__item .Desc {
    padding: 0 50px;
  }
  .p-service__list__item .Desc::before {
    width: 16px;
    height: 16px;
    right: 50px;
  }
  .p-message {
    padding-top: 120px;
  }
  .p-message__img {
    flex-basis: 44%;
    margin: 0;
  }
  .c-points ul {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-points__img {
    margin-right: 240px;
  }
  .c-points__desc {
    width: 75%;
    padding: 60px 40px;
  }
  .p-menu__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-menu__item h3 {
    left: 10%;
  }
  .p-contact ul {
    max-width: 1000px;
    gap: 50px;
  }
  .p-contact__tel a {
    font-size: 1.4em;
  }
  .c-contact .contact-form .wrap {
    max-width: 800px;
  }
  .p-footer .c-container {
    max-width: 1000px;
    padding: 0;
  }
  .c-company .c-message__img {
    flex-basis: 48%;
    margin: 0;
  }
  .c-company .c-message__desc {
    flex-basis: 48%;
  }
  .c-company .c-policy__list__item {
    padding: 30px;
  }
  .c-menu__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}/*# sourceMappingURL=style.css.map */