/* 
Theme Name: GlobalsStandard
*/
@charset "UTF-8";
html {
  margin-top: 0 !important;
}
body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Fira Sans", sans-serif;
}

.main-inner {
  overflow: hidden;
}

/* ------------------------------------------------------------ */
/* common */
/* ------------------------------------------------------------ */
.loading {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-inner {
  max-width: 300px;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.common-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.common-ttl .main {
  font-family: "Fira Sans";
  font-size: 100px;
  font-style: italic;
  color: #023e78;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .common-ttl .main {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  .common-ttl .main {
    font-size: clamp(46px, 21.676px + 8.108vw, 52px);
  }
}
.common-ttl .sub {
  font-family: "Noto Sans JP";
  font-size: 24px;
  color: #023e78;
  font-weight: 700;
  margin-top: -1px;
}
@media screen and (max-width: 1000px) {
  .common-ttl .sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common-ttl .sub {
    font-size: 16px;
  }
}
.common-ttl .main.white,
.common-ttl .sub.white {
  color: #fff;
}

.view-btn {
  position: absolute;
  left: calc(100% - 288px);
  top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .view-btn {
    left: calc(100% - 189px);
  }
}

.view-btn .original-anime,
.view-btn .arrow.original-anime {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s, transform 0.5s, width 0.5s, height 0.5s;
  transition-delay: 2.5s, 2.5s, 0s, 2.5s;
}

.view-btn .original-anime.is-in-view,
.view-btn .arrow.original-anime.is-in-view {
  opacity: 1;
  transform: translateX(0);
}

.view-btn .circle.original-anime {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 2s;
}

.view-btn .circle.original-anime.is-in-view {
  opacity: 1;
  transform: translateX(0);
}

.view-btn span {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  font-family: "Fira Sans";
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .view-btn span {
    font-size: 20px;
  }
}
.view-btn.white span {
  color: #fff;
}
.view-btn .arrow {
  position: relative;
  display: inline-block;
  width: 95px;
  height: 2px;
  margin-left: 20px;
  margin-top: 20px;
  border-radius: 9999px;
  background-color: #000;
  -webkit-transition: width 0.2s linear;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .view-btn .arrow {
    width: 64px;
    margin-left: 13px;
    margin-top: 15px;
  }
}
.view-btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 19px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000;
  -webkit-transform: rotate(38deg);
  transform: rotate(38deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.view-btn .circle {
  position: absolute;
  top: -10px;
  left: 236px;
  width: 54px;
  height: 54px;
  border-radius: 54px;
  border: 3px solid #fff400;
  background: #fff400;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .view-btn .circle {
    top: -10px;
    left: 148px;
    width: 42px;
    height: 42px;
    border: 2px solid #fff400;
  }
}
.view-btn.white .arrow {
  background-color: #ffffff;
}
.view-btn.white .arrow::before {
  background-color: #ffffff;
}
.view-btn.white .circle {
  background: transparent;
}
.view-btn:hover .arrow {
  width: 150px;
}

.common-small-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 39px;
}
.common-small-ttl .main {
  font-family: "Fira Sans";
  font-size: 60px;
  font-style: italic;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-small-ttl .main {
    font-size: 40px;
  }
}
.common-small-ttl .sub {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .common-small-ttl .sub {
    margin-top: 7px;
  }
}

.common-page-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 222px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s linear, transform 0.5s linear;
}
@media screen and (max-width: 767px) {
  .common-page-ttl {
    margin-left: 20px;
  }
}
.p-common-fv.original-anime.is-in-view .common-page-ttl {
  opacity: 1;
  transform: translateX(0);
}

.common-page-ttl .main {
  font-family: "Fira Sans";
  font-size: 60px;
  font-style: italic;
  color: #023e78;
  font-weight: 500;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .common-page-ttl .main {
    font-size: clamp(32px, 5.074px + 7.161vw, 60px);
  }
}
@media screen and (max-width: 374px) {
  .common-page-ttl .main {
    font-size: 32px;
  }
}
.common-page-ttl .sub {
  margin-top: -1px;
  font-size: 20px;
  color: #023e78;
  font-weight: 700;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .common-page-ttl .sub {
    font-size: clamp(16px, 12.153px + 1.023vw, 20px);
  }
}
@media screen and (max-width: 374px) {
  .common-page-ttl .sub {
    font-size: 16px;
  }
}

.common-breadcrumb {
  margin-top: 12px;
}
.common-breadcrumb .common-breadcrumb-inr {
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .common-breadcrumb .common-breadcrumb-inr {
    width: calc(100% - 40px);
  }
}
.common-breadcrumb .breadcrumb-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #1a1a1a;
  margin-bottom: 81px;
}
@media screen and (max-width: 767px) {
  .common-breadcrumb .breadcrumb-lst {
    margin-bottom: 61px;
  }
}
.common-breadcrumb .breadcrumb-lst .item {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #888;
}
@media screen and (max-width: 374px) {
  .common-breadcrumb .breadcrumb-lst .item {
    font-size: clamp(9px, -3px + 4vw, 12px);
  }
}
.common-breadcrumb .breadcrumb-lst .item:not(:last-child)::after {
  content: ">";
  margin: 0 11px;
}

.common-breadcrumb .breadcrumb-lst .item:last-child,
.common-breadcrumb .breadcrumb-lst .item:nth-last-child(2)::after {
  color: #1a1a1a;
}

.common-mini-ttl {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
.common-mini-ttl .white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common-mini-ttl {
    margin-bottom: 40px;
  }
}

.common-big-ttl {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
.common-big-ttl .white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common-big-ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}

.p-common-fv {
  background: #fff;
  background-size: cover;
  background-position: center;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .p-common-fv {
    margin-top: 60px;
  }
}

.p-common-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 365.654px;
  height: 250px;
  background-image: url(../img/fv_blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s linear, transform 0.5s linear;
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-common-fv::before {
    left: -200px;
  }
}

.p-common-fv.original-anime.is-in-view::before {
  opacity: 1;
  transform: translateX(0);
}

.p-common-fv-inr {
  z-index: 2;
}

.common-sidebar {
  max-width: 300px;
  width: 27.2727272727%;
}
@media screen and (max-width: 767px) {
  .common-sidebar {
    max-width: none;
    width: 100%;
  }
}
.common-sidebar .common-mini-ttl {
  text-align: left;
  margin-top: -1px;
  margin-bottom: 16px;
  font-size: 20px;
}
.common-sidebar .common-new {
  margin-bottom: 81px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new {
    margin-bottom: 61px;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}
.common-sidebar .common-new .new-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14.5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst {
    gap: 18.5px;
    margin-top: 19px;
  }
}
.common-sidebar .common-new .new-lst .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: transform 0.1s, opacity 0.1s;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst .item {
    gap: 12px;
  }
}

.common-sidebar .common-new .new-lst .item:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

.common-sidebar .common-new .new-lst .item .img {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst .item .img {
    aspect-ratio: 120/90;
    width: clamp(120px, 29.091px + 24.242vw, 160px);
  }
}
@media screen and (max-width: 374px) {
  .common-sidebar .common-new .new-lst .item .img {
    width: clamp(100px, 18.919px + 27.027vw, 120px);
  }
}
.common-sidebar .common-new .new-lst .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.common-sidebar .common-new .new-lst .item .content {
  padding: 3px 0;
  width: 63.3333333333%;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst .item .content {
    padding: 0;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media screen and (max-width: 374px) {
  .common-sidebar .common-new .new-lst .item .content {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.common-sidebar .common-new .new-lst .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.common-sidebar .common-new .new-lst .item .label {
  color: #e61264;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border: 1px solid #e61264;
}
@media screen and (max-width: 374px) {
  .common-sidebar .common-new .new-lst .item .label {
    font-size: clamp(9px, -3px + 4vw, 12px);
  }
}
.common-sidebar .common-new .new-lst .item .new {
  color: #e61264;
  font-size: 14px;
  font-weight: 500;
  margin-left: 6px;
}
.common-sidebar .common-new .new-lst .item .date {
  color: #888;
  font-size: clamp(10px, 1.742px + 1.075vw, 14px);
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst .item .date {
    font-size: 14px;
    margin-right: 3px;
  }
}
@media screen and (max-width: 374px) {
  .common-sidebar .common-new .new-lst .item .date {
    font-size: clamp(10px, -6px + 5.333vw, 14px);
  }
}
.common-sidebar .common-new .new-lst .item .txt {
  margin-top: 8px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .common-sidebar .common-new .new-lst .item .txt {
    margin-top: 4px;
    line-height: 20px;
  }
}
@media screen and (max-width: 374px) {
  .common-sidebar .common-new .new-lst .item .txt {
    font-size: clamp(10px, -6.216px + 5.405vw, 14px);
  }
}
.common-sidebar .common-category .category-lst .item {
  position: relative;
  padding: 16px 0 17px 39px;
  border-bottom: 1px solid #ddd;
}
.common-sidebar .common-category .category-lst .item:first-child {
  border-top: 1px solid #ddd;
}
.common-sidebar .common-category .category-lst .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/sidebar/arrow.png);
  background-size: cover;
  background-position: center;
}
.common-sidebar .common-category .category-lst .item a {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.4s;
}

.common-sidebar .common-category .category-lst .item:hover a {
  color: #e61264;
}

.common-btn {
  max-width: 304px;
  text-align: center;
  padding: 24px 0;
  border: 1px solid #023e78;
  color: #023e78;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: block;
  margin: -2px auto 0;
  position: relative;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .common-btn {
    max-width: 295px;
    font-size: 14px;
    padding: 23px;
  }
}

.common-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background-image: url(../img/service/prog_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.2s linear, right 0.2s linear;
  transition: background-image 0.2s linear, right 0.2s linear;
}
@media screen and (max-width: 767px) {
  .common-btn:before {
    right: 10px;
  }
}

.common-btn:hover {
  color: #fff;
  background: #023e78;
}
.common-btn:hover:before {
  right: 16px;
  background-image: url(../img/service/prog_arrow_white.png);
}

.common-form .form-ttl {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .common-form .form-ttl {
    font-size: 24px;
  }
}
.common-form .form-lst {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst {
    margin-top: 34px;
    gap: 14px;
  }
}
.common-form .form-lst .fld {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld {
    gap: 2px;
  }
}
.common-form .form-lst .fld .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld .head {
    gap: 8px;
  }
}
.common-form .form-lst .fld .head .label {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld .head .label {
    font-size: 14px;
  }
}
.common-form .form-lst .fld .head .must {
  background: #e61264;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 1px 8px 2px;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld .head .must {
    font-size: 10px;
    margin-top: 1px;
  }
}
.common-form .form-lst .fld select,
.common-form .form-lst .fld input,
.common-form .form-lst .fld textarea {
  height: 44px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding-left: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld select,
  .common-form .form-lst .fld input,
  .common-form .form-lst .fld textarea {
    padding-left: 13px;
  }
}
.common-form .form-lst .fld select {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld select {
    font-size: 14px;
  }
}

.common-form .form-lst .fld textarea {
  padding-top: 7px;
  height: 239px;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld textarea {
    height: 140px;
  }
}
.common-form .form-lst .fld input::-webkit-input-placeholder,
.common-form .form-lst .fld textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
.common-form .form-lst .fld input::-moz-placeholder,
.common-form .form-lst .fld textarea::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
.common-form .form-lst .fld input:-ms-input-placeholder,
.common-form .form-lst .fld textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
.common-form .form-lst .fld input::-ms-input-placeholder,
.common-form .form-lst .fld textarea::-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
.common-form .form-lst .fld input::placeholder,
.common-form .form-lst .fld textarea::placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-form .form-lst .fld input::-webkit-input-placeholder,
  .common-form .form-lst .fld textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  .common-form .form-lst .fld input::-moz-placeholder,
  .common-form .form-lst .fld textarea::-moz-placeholder {
    font-size: 14px;
  }
  .common-form .form-lst .fld input:-ms-input-placeholder,
  .common-form .form-lst .fld textarea:-ms-input-placeholder {
    font-size: 14px;
  }
  .common-form .form-lst .fld input::-ms-input-placeholder,
  .common-form .form-lst .fld textarea::-ms-input-placeholder {
    font-size: 14px;
  }
  .common-form .form-lst .fld input::placeholder,
  .common-form .form-lst .fld textarea::placeholder {
    font-size: 14px;
  }
}

.simple-anime {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 1s, transform 1s;
}

.simple-anime.is-in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.from-chk {
  display: flex;
  justify-content: center;
  margin-top: 43px;
  margin-bottom: 46px;
  margin-left: 17px;
}

.from-chk .chk {
  display: flex;
  gap: 10px;
}

.from-chk * input[type="checkbox"] {
  display: none;
}

.from-chk .wpcf7-list-item {
  position: relative;
}

.from-chk * .chk-txt {
  font-weight: 700;
  font-size: clamp(14px, 5.892px + 2.703vw, 16px);
}

.from-chk * .chk-txt-span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  margin-right: clamp(5px, -15.27px + 6.757vw, 10px);
}

.wpcf7-list-item::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid;
  background: #fff;
  position: absolute;
  left: 0;
  top: -6px;
  transform: translate(-100%, -50%);
  box-sizing: border-box;
}

.wpcf7-list-item::after {
  content: "";
  display: block;
  opacity: 0;
  width: 14px;
  height: 9px;
  position: absolute;
  left: -9px;
  top: -5px;
  transform: translate(-100%, -50%);
  background: url(../img/download/check.png) no-repeat center center/contain;
}

.wpcf7-list-item:has(input:checked)::after {
  opacity: 1;
}

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

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

/* ------------------------------------------------------------ */
/* top page  */
/* ------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 16px 16px 16px 16px;
  z-index: 9999;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1279px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 16px 20px 16px 20px;
  }
}
header .hd-inr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header h1 {
  width: 280px;
  transition: opacity 0.2s linear, transform 0.2s linear;
}
header h1:hover {
  opacity: 0.6;
  transform: scale(1.05);
}
@media screen and (max-width: 1279px) {
  header h1 {
    width: 198px;
  }
}
header .hd-nav {
  margin-left: 96px;
}
@media screen and (max-width: 1279px) {
  header .hd-nav {
    display: none;
  }
}
header .hd-nav .lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .hd-nav .item {
  font-size: 14px;
}
header .hd-nav .item:not(:last-child)::after {
  content: "／";
  margin: 0 16px; /* アイテム間のスペースを調整 */
}
header .hd-nav .item a {
  color: #023e78;
  transition: color 0.2s linear, font-weight 0.2s linear;
}
header .hd-nav .item a:hover {
  color: #187cd9;
  border-bottom: 1px solid #187cd9;
  font-weight: 700;
}
header .hd-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  margin-left: auto;
}
@media screen and (max-width: 1279px) {
  header .hd-btns {
    display: none;
  }
}
header .hd-btns .lst {
  display: flex;
  gap: 10px;
}
header .hd-btns .lst .item a {
  display: block;
  width: 176px;
  padding-top: 21px;
  padding-bottom: 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
header .hd-btns .item a span {
  font-size: 14px;
}
header .white a {
  background: #fff;
  border: 1px solid #023e78;
  color: #023e78;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
header .white a:hover {
  background: #023e78;
  color: #fff;
}
header .blue a {
  background: #023e78;
  color: #fff;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
header .blue a:hover {
  background: #002a52;
}
header .drawer-icon {
  width: 27px;
  height: 15.75px;
  position: relative;
  z-index: 51;
  display: none;
  margin-left: auto;
}
@media screen and (max-width: 1279px) {
  header .drawer-icon {
    display: block;
  }
}
header .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 10px;
}
header .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
header .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
header .drawer-icon__bar {
  position: absolute;
  top: 1px;
  left: 0;
  width: 27px;
  height: 2.25px;
  border-radius: 6px;
  background: #023e78;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
header .drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
header .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
}

.fv {
  margin-bottom: 150px;
  margin-top: 100px;

  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s, transform 1s;
}
@media screen and (max-width: 1279px) {
  .fv {
    margin-top: 60px;
    margin-bottom: clamp(90px, 11.719vw, 150px);
  }
}
@media screen and (max-width: 767px) {
  .fv {
    margin-bottom: 0px;
  }
}
.fv.fv-loaded {
  opacity: 1;
  transform: translateY(0);
}

.fv .fv-inr {
  position: relative;
  width: max(100% - 90px, 92.96875%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-size: cover;
  background-position: center;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
  .fv .fv-inr {
    width: calc(100% - 40px);
  }
}
.fv .fv-ttl {
  position: absolute;
  bottom: 60px;
  left: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 1.2s;
}

@media screen and (max-width: 767px) {
  .fv .fv-ttl {
    bottom: 20.5px;
    left: -20px;
  }
}
.fv.fv-loaded .fv-ttl {
  opacity: 1;
  transform: translateY(0);
}
.fv .fv-ttl-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .fv .fv-ttl-main {
    gap: 8px;
  }
}
.fv .fv-ttl .main {
  background: #fff;
  color: #023e78;
  font-size: clamp(36px, 0px + 4.688vw, 60px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fv .fv-ttl .main {
    font-size: 40px;
  }
}
.fv .fv-ttl .main.spsize {
  display: none;
  font-size: max(10.667vw, 32px);
}
@media screen and (max-width: 767px) {
  .fv .fv-ttl .main.spsize {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv-ttl .main.pcsize {
    display: none;
  }
}
.fv .fv-ttl .sub {
  background: #023e78;
  color: #fff;
  font-size: clamp(12px, 0px + 1.563vw, 20px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv .fv-ttl .sub {
    font-size: max(4.267vw, 12px);
  }
}

.fv .fv__swiper {
  width: 100%;
  max-height: 86vh;
}
.fv .fv__image {
  aspect-ratio: 1190/700;
  width: 100%;
}
.fv .fv__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv .fv__image {
    aspect-ratio: 335/607;
  }
}

.drawer-content {
  width: 100%;
  height: 0px;
  position: fixed;
  top: 0;
  right: 0;
  background: #023e78;
  z-index: 50;
  margin-top: 60px;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
  overflow: hidden;
}
.drawer-content.is-checked {
  height: calc(100% - 60px);
}
.drawer-content .drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  padding-top: 60px;
}
.drawer-content .drawer-content__menu .lst {
  flex-direction: column;
  gap: 41px;
  display: flex;
}

.drawer-content .drawer-content__link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.drawer-content .drawer-content__button {
  margin-top: 14px;
  text-align: right;
}
.drawer-content .btn {
  max-width: calc(295px - 40px);
  width: 100%;
  height: 68px;
  margin: 0 auto;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
.drawer-content .btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-content .btn.white {
  background: #fff;
  color: #023e78;
}
.drawer-content .btn:hover {
  background: #002a52;
}
.drawer-content .btn.white:hover {
  background: #023e78;
  color: #fff;
}

.about {
  position: relative;
  padding: 105px 0 93px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0 93px;
  }
}
.about .about-inr {
  position: relative;
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .about-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .about .common-ttl {
    margin-left: 2px;
    gap: 3px;
  }
}
@media screen and (max-width: 767px) {
  .about .view-btn {
    top: auto;
    bottom: -65px;
  }
}
.about .about-content {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about .about-content {
    margin-top: 71px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about .about-txt {
  width: 34.4545454545%;
  margin-top: -12px;
}
@media screen and (max-width: 767px) {
  .about .about-txt {
    width: 100%;
    padding-right: 2px;
  }
}
.about .about-txt p {
  line-height: 24px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .about .about-txt p {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .about .about-txt p {
    font-size: 14px;
  }
}
.about .about-txt p:nth-child(2) {
  margin-top: 24px;
}
.about .about-txt p:nth-child(3) {
  margin-top: 24px;
}

.about .about-content.original-anime .about-txt {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 1.2s;
}
.about .about-content.original-anime.is-in-view .about-txt {
  opacity: 1;
  transform: translateX(0);
}

.about .about-img {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 1.2s;
  width: 61.9090909091%;
}
.about .about-content.original-anime.is-in-view .about-img {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .about .about-img {
    width: 100%;
    margin-top: 70px;
  }
}
.about .about-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(500px + (100% - 1280px) / 2);
  height: 800px;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  border-radius: 50% 0 0 50%;
  transition: border-radius 2s cubic-bezier(0.47, 0.85, 0.29, 0.97), opacity 2s 0.2s;
}
.about .about-bg.original-anime.is-in-view {
  opacity: 1;
  border-radius: 0;
}
.about .about-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .about .about-bg {
    width: calc(500px + (100% - 1000px) / 2);
    height: 650px;
  }
}
@media screen and (max-width: 767px) {
  .about .about-bg {
    top: auto;
    bottom: -19px;
    right: 0;
    width: 295px;
    height: clamp(362px, 123.514px + 63.427vw, 500px);
  }
}
@media screen and (max-width: 374px) {
  .about .about-bg {
    bottom: clamp(-60px, -224px + 54.667vw, -19px);
    height: 362px;
    width: calc(295px - (375px - 100%));
  }
}
.about .about-line {
  position: absolute;
  top: 263px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 574px;
  background: #edf3f8;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
}
@media screen and (max-width: 767px) {
  .about .about-line {
    top: 200px;
    height: 788px;
  }
}

.service {
  position: relative;
  margin-top: 271px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 214px;
  }
}
.service .service-inr {
  position: relative;
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service .service-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .service .view-btn {
    top: auto;
    bottom: -65px;
  }
}
.service .service-content {
  margin-top: 87px;
  margin-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .service .service-content {
    margin-top: 68px;
    margin-bottom: 230px;
  }
}
.service .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service .service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.service .service-list .item {
  width: 29.0909090909%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service .service-list .item {
    width: 100%;
    padding-left: 15px;
  }
}
.service .service-list .item:nth-child(2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service .service-list .item:nth-child(2) {
    margin-top: 72px;
  }
}
.service .service-list .item:nth-child(3) {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service .service-list .item:nth-child(3) {
    margin-top: 75px;
  }
}

.service .service-list .item.original-anime .img,
.service .service-list .item.original-anime .num {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
.service .service-list .item.original-anime.is-in-view:nth-child(1) .img,
.service .service-list .item.original-anime.is-in-view:nth-child(1) .num {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.service .service-list .item.original-anime.is-in-view:nth-child(2) .img,
.service .service-list .item.original-anime.is-in-view:nth-child(2) .num {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.service .service-list .item.original-anime.is-in-view:nth-child(3) .img,
.service .service-list .item.original-anime.is-in-view:nth-child(3) .num {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}
.service .service-list .item.original-anime.is-in-view .txt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}

.service .service-list .item .num {
  position: absolute;
  top: -55px;
  right: 3px;
  font-family: "Fira Sans";
  font-size: clamp(69px, 9.091vw, 100px);
  font-style: italic;
  color: #023e78;
  text-shadow: 3px 3px 0px #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .service .service-list .item .num {
    font-size: 100px;
  }
}
.service .service-list .item .img {
  position: relative;
}
.service .service-list .item .img .ttl {
  position: absolute;
  bottom: 33px;
  left: -32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .service .service-list .item .img .ttl {
    left: -15px;
  }
}
.service .service-list .item .img .ttl .main {
  color: #023e78;
  background: #fff;
  font-size: clamp(19px, 2.545vw, 28px);
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .service .service-list .item .img .ttl .main {
    font-size: clamp(23px, 2.73px + 6.757vw, 28px);
  }
}
.service .service-list .item .txt {
  font-size: clamp(9px, 1.273vw, 14px);
  font-weight: 500;
  line-height: clamp(16px, 2.182vw, 24px);
  color: #1a1a1a;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.5s;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .service .service-list .item .txt {
    font-size: 14px;
    line-height: 24px;
    padding-right: 1px;
  }
}
.service .service-line {
  position: absolute;
  top: 556px;
  left: 0;
  width: 100%;
  height: 575px;
  background: #edf3f8;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .service .service-line {
    top: 1077px;
    height: 1187px;
  }
}

.case {
  padding: 100px 0 120px;
  background-image: url(../img/top/case_bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 60px 0 153px;
  }
}
@media screen and (max-width: 767px) {
  .case .common-ttl {
    gap: 3px;
  }
}

.case.original-anime.is-in-view {
  opacity: 1;
  transform: translateX(0);
}

.case .case-inr {
  position: relative;
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 2.5s;
}
.case.original-anime.is-in-view .case-inr {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .case .case-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .case .view-btn {
    top: auto;
    bottom: -91px;
  }
}
.case .case-content {
  margin-top: 81px;
}
@media screen and (max-width: 767px) {
  .case .case-content {
    margin-top: 40px;
  }
}
.case .case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 68px 0px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .case .case-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 52.7px 0px;
  }
}
.case .case-list .item {
  width: 29.0909090909%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case .case-list .item {
    width: 100%;
  }
}
.case .case-list .item .ttl {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .case .case-list .item .ttl {
    margin-top: 13px;
    margin-bottom: 11px;
  }
}
.case .case-list .item .tag {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border: 1px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .case .case-list .item .tag {
    padding: 5px 15px;
  }
}
.case .case-list .item .mark {
  position: absolute;
  bottom: 3px;
  right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transition: right 0.2s linear, border 0.2s linear;
  transition: right 0.2s linear, border 0.2s linear;
}
.case .case-list .item .mark svg {
  width: 9.424px;
  height: 16.026px;
  margin-top: -1px;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .case .case-list .item .mark {
    bottom: 0;
    right: 0;
  }
}
.case .case-list .item:hover .mark {
  right: 0px;
  border: 2px solid #fff400;
}
.case .case-list .item:hover .mark svg path {
  fill: #fff400;
}

.news {
  position: relative;
  margin-top: 166px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 60px;
  }
}
.news .news-inr {
  position: relative;
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .news .news-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .news .common-ttl {
    gap: 3px;
  }
}
@media screen and (max-width: 767px) {
  .news .view-btn {
    top: auto;
    bottom: -65px;
  }
}
.news .news-content {
  max-width: 768px;
  margin: 79px auto 161px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .news .news-content {
    margin: 60px auto 275px;
    padding: 24px 20px 41px;
  }
}
.news .news-list .item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0 31px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s linear, transform 0.5s linear;
}
@media screen and (max-width: 767px) {
  .news .news-list .item {
    padding: 16px 0 31px;
  }
}
.news.simple-anime.is-in-view .news-list .item {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.news.simple-anime.is-in-view .news-list .item:nth-child(2) {
  transition-delay: 0.75s;
}
.news.simple-anime.is-in-view .news-list .item:nth-child(3) {
  transition-delay: 1s;
}

.news .news-list .item .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news .news-list .item .tag {
  font-size: 14px;
  font-weight: 500;
  color: #e61264;
  border: 1px solid #e61264;
  padding: 8px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .news .news-list .item .tag {
    font-size: 12px;
    padding: 5.7px 19px;
  }
}
.news .news-list .item .date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.news .news-list .item .txt {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 16px;
  white-space: pre-wrap;
  line-height: 1.6;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .news .news-list .item .txt {
    font-size: 14px;
  }
}
.news .news-line {
  position: absolute;
  top: 427px;
  left: 0;
  width: 100%;
  height: 413px;
  background: #edf3f8;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .news .news-line {
    top: 148px;
    height: 591px;
  }
}

.other .other-inr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .other .other-inr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.other .download-inr {
  padding: 55px 0 52px;
  width: 50%;
  background-image: url(../img/top/other_download.jpg);
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .other .download-inr {
    background-image: url(../img/top/other_download_sp.jpg);
    width: 100%;
    padding: 45px 0 25px;
  }
}
.other .contact-inr {
  padding: 55px 0 52px;
  width: 50%;
  background-image: url(../img/top/other_contact.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .other .contact-inr {
    width: 100%;
    padding: 45px 0 25px;
    background-image: url(../img/top/other_contact_sp.jpg);
  }
}
.other .other-inr .btn {
  padding: 34px 97px 29px 99px;
  border: 3px solid #fff400;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  -webkit-transition: background 0.2s linear, color 0.2s linear;
  transition: background 0.2s linear, color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .other .other-inr .btn {
    border: 2px solid #fff400;
    padding: 24px 109px 26px;
  }
}
@media screen and (max-width: 374px) {
  .other .other-inr .btn {
    padding: 24px 95px 26px;
  }
}
.other .other-inr .btn span {
  color: #fff400;
  font-family: "Fira Sans";
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  margin: 0 auto;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .other .other-inr .btn span {
    font-size: 16px;
  }
}
.other .other-inr .btn svg {
  position: absolute;
  top: 50%;
  right: 27px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
}
.other .other-inr .btn svg path {
  -webkit-transition: fill 0.2s linear;
  transition: fill 0.2s linear;
}
@media screen and (max-width: 767px) {
  .other .other-inr .btn svg {
    right: 18px;
  }
}
.other .other-inr .btn:hover {
  background: #fff400;
}
.other .other-inr .btn:hover span {
  color: #000;
}
.other .other-inr .btn:hover svg {
  right: 20px;
}
.other .other-inr .btn:hover svg path {
  fill: #000;
}

footer {
  position: relative;
  padding: 129px 0 17px;
  background: #1a1a1a;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 77px 0 8px;
  }
}
footer .footer-inr {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .footer-inr {
    max-width: 280px;
  }
}
footer .logo {
  width: 363px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .logo {
    width: 100%;
  }
}
footer .info {
  margin: 36px auto 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 235px;
}
@media screen and (max-width: 767px) {
  footer .info {
    margin: 33px auto 36px;
  }
}
footer .info p {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
footer .copy {
  text-align: center;
}
footer .copy small {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  footer .copy small {
    font-size: 12px;
  }
}
footer .page-top {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  footer .page-top {
    bottom: 20px;
    right: 10px;
  }
}

/* ------------------------------------------------------------ */
/* about page */
/* ------------------------------------------------------------ */
.p-about-fv {
  background-image: url(../img/about/fv.jpg);
  height: 250px;
}
@media screen and (max-width: 767px) {
  .p-about-fv {
    background-image: url(../img/about/fv_sp.jpg);
  }
}

.p-about-card {
  margin-bottom: 295px;
}
@media screen and (max-width: 767px) {
  .p-about-card {
    margin-bottom: 278px;
  }
}
@media screen and (max-width: 374px) {
  .p-about-card {
    margin-bottom: clamp(278px, 613px - 89.333vw, 345px);
  }
}
.p-about-card .p-about-card-inr {
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about-card .p-about-card-inr {
    width: 100%;
  }
}
.p-about-card .card-lst .item {
  position: relative;
}
.p-about-card .card-lst .item.original-anime.is-in-view .txt {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: opacity 0.5s linear, transform 0.5s linear;
  animation: parabolicMove 1s ease-in-out forwards;
}

@keyframes parabolicMove {
  0% {
    z-index: -1;
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 68px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.p-about-card .card-lst .item .txt {
  position: absolute;
  top: 293px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  padding: 32px 40px 30px;
  width: 688px;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .item .txt {
    max-width: 550px;
    padding: 20px 20px 19px;
    top: 241px;
    width: calc(100% - 40px);
  }
}
.p-about-card .card-lst .item .txt p:nth-child(1) {
  color: #023e78;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .item .txt p:nth-child(1) {
    font-size: 20px;
  }
}
.p-about-card .card-lst .item .txt p:nth-child(2) {
  margin-top: 31px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .item .txt p:nth-child(2) {
    margin-top: 18px;
  }
}
.p-about-card .card-lst .item .ttl {
  padding-top: 20px;
  padding-left: 20px;
}
.p-about-card .card-lst .ttl .main {
  color: #fff;
  font-family: "Fira Sans";
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .ttl .main {
    font-size: 52px;
  }
}
.p-about-card .card-lst .ttl .sub {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .ttl .sub {
    font-size: 16px;
  }
}
.p-about-card .card-lst .item:nth-child(1) {
  margin-bottom: 260px;
  height: 353px;
  background-image: url(../img/about/card_1.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .item:nth-child(1) {
    height: 281px;
    background-image: url(../img/about/card_1_sp.jpg);
    margin-bottom: 253px;
  }
}
@media screen and (max-width: 374px) {
  .p-about-card .card-lst .item:nth-child(1) {
    margin-bottom: clamp(253px, 428px - 46.667vw, 288px);
  }
}
.p-about-card .card-lst .item:nth-child(2) {
  margin-bottom: 260px;
  height: 353px;
  background-image: url(../img/about/card_2.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-about-card .card-lst .item:nth-child(2) {
    height: 281px;
    background-image: url(../img/about/card_2_sp.jpg);
  }
}

.p-about-info {
  padding: 80px 0;
  background-image: url(../img/about/info_bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-about-info {
    padding: 60px 0;
  }
}
.p-about-info .p-about-info-inr {
  max-width: 768px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about-info .p-about-info-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
.p-about-info .content {
  width: 100%;
  border: 1px solid #707070;
  background: #fff;
  margin: 0 auto;
  padding: 60px 40px 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-info .content {
    padding: 40px 19px 39px;
  }
}
.p-about-info .content .lst {
  width: 100%;
}
.p-about-info .content .lst .item .label,
.p-about-info .content .lst .item .value {
  opacity: 0;
  transition: opacity 0.5s linear;
}
.p-about-info .content .lst.original-anime.is-in-view .item .label,
.p-about-info .content .lst.original-anime.is-in-view .item .value {
  opacity: 1;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(2) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(2) .value {
  transition-delay: 0.3s;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(3) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(3) .value {
  transition-delay: 0.6s;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(4) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(4) .value {
  transition-delay: 0.9s;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(5) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(5) .value {
  transition-delay: 1.2s;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(6) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(6) .value {
  transition-delay: 1.5s;
}
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(7) .label,
.p-about-info .content .lst.original-anime.is-in-view .item:nth-child(7) .value {
  transition-delay: 1.8s;
}

.p-about-info .content .lst .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about-info .content .lst .item {
    max-width: 400px;
    margin: 0 auto;
  }
}
.p-about-info .content .lst .item span {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0 25.4px;
}
@media screen and (max-width: 767px) {
  .p-about-info .content .lst .item span {
    font-size: 14px;
    padding: 16px 0;
  }
}
.p-about-info .content .lst .item span:nth-child(1) {
  width: 200px;
  padding-left: 32px;
  border-top: 1px solid #023e78;
}
@media screen and (max-width: 767px) {
  .p-about-info .content .lst .item span:nth-child(1) {
    width: 33.8983050847%;
    padding-left: 0;
  }
}
.p-about-info .content .lst .item:last-child span:nth-child(1) {
  border-bottom: 1px solid #023e78;
}
.p-about-info .content .lst .item span:nth-child(2) {
  width: 488px;
  padding-left: 36px;
  border-top: 1px solid #e8eaec;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-about-info .content .lst .item span:nth-child(2) {
    width: 66.1016949153%;
    padding-left: 24px;
  }
}
.p-about-info .content .lst .item:last-child span:nth-child(2) {
  border-bottom: 1px solid #e8eaec;
}

.p-about-member {
  position: relative;
  padding-top: 120px;
  padding-bottom: 187px;
}
@media screen and (max-width: 767px) {
  .p-about-member {
    padding-top: 60px;
  }
}
.p-about-member .member-inr {
  max-width: 688px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-member .member-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
.p-about-member .member-lst {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
.p-about-member .member-lst .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s linear, transform 0.5s linear;
}

.p-about-member .member-lst.original-anime.is-in-view .item {
  opacity: 1;
  transform: translateY(0);
}

.p-about-member .member-lst.original-anime.is-in-view .item:nth-child(2) {
  transition-delay: 0.5s;
}

.p-about-member .member-lst.original-anime.is-in-view .item:nth-child(3) {
  transition-delay: 1s;
}

.p-about-member .member-lst.original-anime.is-in-view .item .sns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}

@media screen and (max-width: 767px) {
  .p-about-member .member-lst .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-about-member .member-lst .item .info {
  width: 408px;
}
@media screen and (max-width: 767px) {
  .p-about-member .member-lst .item .info {
    width: 100%;
    margin-top: 21px;
  }
}
.p-about-member .member-lst .item .info .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-about-member .member-lst .item .info .ttl {
    margin-bottom: 18px;
  }
}
.p-about-member .member-lst .item .info .ttl .pos {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
}
.p-about-member .member-lst .item .info .ttl .name {
  margin-left: clamp(18px, 9.892px + 2.703vw, 20px);
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
}
.p-about-member .member-lst .item .info .txt {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.p-about-member .member-lst .item .info .sns {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s linear, transform 0.5s linear;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-about-member .member-lst .item .info .sns {
    margin-top: 17px;
  }
}
.p-about-member .member-lst .item .info .sns .sns-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 144px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-about-member .sns-lst .sns-item {
  width: 32px;
}
.p-about-member .member-lst .item .img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-about-member .member-lst .item .img {
    margin: 0 auto;
  }
}
.p-about-member .member-line {
  position: absolute;
  top: 875px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 577px;
  background: #edf3f8;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
}
@media screen and (max-width: 767px) {
  .p-about-member .member-line {
    top: 984px;
    height: 1168px;
  }
}

/* ------------------------------------------------------------ */
/* service page */
/* ------------------------------------------------------------ */
.p-service-fv {
  background: #fff;
  background-image: url(../img/service/fv.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-service-fv {
    background-image: url(../img/service/fv_sp.jpg);
  }
}

.p-service-prog {
  position: relative;
  margin-bottom: 250px;
}
@media screen and (max-width: 767px) {
  .p-service-prog {
    margin-bottom: 60px;
  }
}
.p-service-prog .p-service-prog-inr {
  max-width: 1090px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service-prog .p-service-prog-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
.p-service-prog .prog-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(180px, -70.5px + 32.617vw, 347px);
  margin-top: 131px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-lst {
    margin-top: 211px;
    gap: 231px;
  }
}
.p-service-prog .prog-item {
  margin-left: 45px;
  position: relative;
  width: 54.128440367%;
  padding: 82px 40px 60px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item {
    width: 100%;
    margin-left: 0;
    padding: 43px 20px 40px;
  }
}
.p-service-prog .prog-item:nth-child(2) {
  padding-top: 74px;
  margin-left: auto;
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(2) {
    padding-top: 43px;
  }
}
.p-service-prog .prog-item:nth-child(3) {
  padding-top: 73px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(3) {
    padding-top: 43px;
  }
}

.p-service-prog .prog-item .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .ttl {
    gap: 7px;
  }
}
.p-service-prog .prog-item .ttl .main {
  color: #1a1a1a;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .ttl .main {
    font-size: 28px;
    line-height: 1.25;
  }
}
.p-service-prog .prog-item .ttl .sub {
  color: #023e78;
  font-family: "Fira Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .ttl .sub {
    font-size: 14px;
  }
}
.p-service-prog .prog-item .txt {
  margin-top: 59px;
  margin-bottom: 58px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .txt {
    margin-top: 31.7px;
    margin-bottom: 30px;
  }
}
.p-service-prog .prog-item .txt p:nth-child(1) {
  padding-right: 7px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .txt p:nth-child(1) {
    padding-right: 0;
  }
}
.p-service-prog .prog-item:nth-child(2) .txt p:nth-child(1) {
  padding-right: 6px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(2) .txt p:nth-child(1) {
    padding-right: 0;
  }
}
.p-service-prog .prog-item:nth-child(3) .txt p:nth-child(1) {
  padding-right: 0;
}
.p-service-prog .detail-lst {
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .detail-lst {
    margin-bottom: 34px;
  }
}
.p-service-prog .prog-item .num {
  position: absolute;
  top: -51px;
  left: 59px;
  color: #023e78;
  text-align: right;
  font-family: "Fira Sans";
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .num {
    top: -43px;
    left: 20px;
    font-size: 68px;
  }
}
.p-service-prog .prog-item:nth-child(2) .num {
  right: 44px;
  top: -65px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(2) .num {
    right: 21px;
    top: -41px;
  }
}
.p-service-prog .prog-item:nth-child(3) .num {
  left: 58px;
  top: -61px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(3) .num {
    left: 20px;
    top: -40px;
  }
}
.p-service-prog .prog-item .img {
  position: absolute;
  top: 63px;
  left: min(41.40625vw, 530px);
  max-width: 560px;
  width: 43.75vw;
  height: 896px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .img {
    aspect-ratio: 188/301;
    height: auto;
    top: -153px;
    left: 49.8666666667%;
    width: 50.1333333333vw;
  }
}
.p-service-prog .prog-item:nth-child(2) .img {
  left: max(-39.0625vw, -500px);
  top: 58px;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(2) .img {
    left: min(-20px, 275px - 50vw);
    top: -151px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item:nth-child(3) .img {
    left: 49.8666666667%;
  }
}
.p-service-prog .prog-item .detail-lst .detail-item {
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service-prog .prog-item .detail-lst .detail-item {
    padding: 18px 0;
  }
}
.p-service-prog .p-service-prog-line {
  position: absolute;
  top: 1366px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 1104px;
  background: #edf3f8;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
}
.p-service-prog .detail-item:first-child {
  border-top: 1px solid #ccc;
}
.p-service-prog .detail-item .label {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  width: 87px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-service-prog .detail-item .label {
    width: 80px;
  }
}
.p-service-prog .detail-item .value {
  display: inline-block;
  width: 470px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-prog .detail-item .value {
    line-height: 1.7;
    width: 215px;
  }
}

.p-service-flow {
  background-image: url(../img/service/flow_bg.jpg);
  padding: 80px 0 119px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-service-flow {
    background-image: url(../img/service/flow_bg_sp.jpg);
    padding: 60px 0;
  }
}
.p-service-flow .p-service-flow-inr {
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service-flow .p-service-flow-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
.p-service-flow .flow-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 209px;
  margin-top: 109px;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 41px;
    padding-left: 60px;
    height: 642px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst {
    padding-left: 40px;
  }
}
.p-service-flow .flow-lst .item {
  position: relative;
  width: 275px;
  padding: clamp(29px, -1.938px + 4.028vw, 46px) 25px 0 50px;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item {
    padding: 39px 20px 22px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item {
    width: 220px;
  }
}
.p-service-flow .flow-lst .item:nth-child(1) {
  padding-left: 43px;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(1) {
    padding: 22px 20px 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(2) {
    padding: 39px 20px 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(3) {
    padding: 42px 20px 19px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(4) {
    padding: 41px 20px 19px;
  }
}
.p-service-flow .flow-lst .item .num {
  position: absolute;
  top: clamp(-50px, -4.202vw, -33px);
  left: 0;
  color: #fff400;
  font-family: "Fira Sans";
  font-size: clamp(13px, 0.261px + 1.659vw, 20px);
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item .num {
    display: block;
    top: 26px;
    left: -60px;
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item .num {
    left: -40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(2) .num {
    top: 46px;
    left: -58px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item:nth-child(2) .num {
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(3) .num {
    top: 51px;
    left: -58px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item:nth-child(3) .num {
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(4) .num {
    top: 62px;
    left: -58px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item:nth-child(4) .num {
    left: -40px;
  }
}
.p-service-flow .flow-lst .item .num em {
  margin-left: 7px;
  font-size: clamp(25px, -5.968px + 4.032vw, 40px);
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item .num em {
    margin-left: 0;
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item .num em {
    font-size: 30px;
  }
}
.p-service-flow .flow-lst .item .ttl {
  color: #023e78;
  font-size: clamp(12px, -2.559px + 1.896vw, 20px);
  font-weight: 700;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item .ttl {
    font-size: 18px;
    text-align: center;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item .ttl {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(2) .ttl {
    margin-bottom: 5px;
  }
}
.p-service-flow .flow-lst .item .txt {
  color: #1a1a1a;
  font-size: clamp(9px, -0.1px + 1.185vw, 14px);
  font-weight: 500;
  line-height: clamp(15px, -1.379px + 2.133vw, 24px);
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item .txt {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item .txt {
    font-size: 12px;
  }
}
.p-service-flow .flow-lst .item .txt span {
  color: #e61264;
}
.p-service-flow .flow-lst .item:nth-child(1) {
  background: #edf3f8;
}
.p-service-flow .flow-lst .item:nth-child(2) {
  background: #dde8f0;
}
.p-service-flow .flow-lst .item:nth-child(3) {
  background: #c7dbe9;
}
.p-service-flow .flow-lst .item:nth-child(4) {
  background: #b0d0e5;
}
.p-service-flow .flow-lst .item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  right: -23px;
  width: 0;
  height: 0;
  border-top: 104.5px solid transparent;
  border-bottom: 104.5px solid transparent;
  border-left: 24px solid;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 0;
    border-top: 22px solid;
    border-bottom: none;
    border-left: 137.5px solid transparent;
    border-right: 137.5px solid transparent;
  }
}
@media screen and (max-width: 374px) {
  .p-service-flow .flow-lst .item:not(:last-child)::before {
    border-left: 110px solid transparent;
    border-right: 110px solid transparent;
  }
}
.p-service-flow .flow-lst .item:nth-child(1)::before {
  border-left-color: #edf3f8;
}
.p-service-flow .flow-lst .item:nth-child(2)::before {
  border-left-color: #dde8f0;
}
.p-service-flow .flow-lst .item:nth-child(3)::before {
  border-left-color: #c7dbe9;
}
@media screen and (max-width: 767px) {
  .p-service-flow .flow-lst .item:nth-child(1)::before {
    border-left-color: transparent;
    bottom: -22px;
    border-top: 22.9px solid;
    border-top-color: #edf3f8;
  }
  .p-service-flow .flow-lst .item:nth-child(2)::before {
    border-left-color: transparent;
    bottom: -29px;
    border-top: 29.5px solid;
    border-top-color: #dde8f0;
  }
  .p-service-flow .flow-lst .item:nth-child(3)::before {
    border-left-color: transparent;
    bottom: -29px;
    border-top: 29.5px solid;
    border-top-color: #c7dbe9;
  }
}

.p-service-qa {
  padding: 161px 0;
}
@media screen and (max-width: 767px) {
  .p-service-qa {
    padding: 59px 0 103px;
  }
}
.p-service-qa .p-service-qa-inr {
  max-width: 688px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service-qa .p-service-qa-inr {
    max-width: 550px;
    width: calc(100% - 40px);
  }
}
.p-service-qa .qa-lst {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst {
    margin-top: 41px;
    gap: 2px;
  }
}
.p-service-qa .qa-lst .item {
  border-bottom: 1px solid #ddd;
}
.p-service-qa .qa-lst .item .head {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .head {
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item:nth-child(4) .head {
    padding: 16px 0;
  }
}
.p-service-qa .qa-lst .item .head p {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .head p {
    font-size: 16px;
    width: 78.2089552239%;
  }
}
.p-service-qa .qa-lst .item.is-open .head p {
  color: #e61264;
}
.p-service-qa .qa-lst .item .head .mark {
  position: relative;
  width: 21px;
  height: 21px;
  margin-right: 3px;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .head .mark {
    margin-right: -1.6px;
  }
}
.p-service-qa .qa-lst .item .head .mark::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 21px;
  background: #000;
  top: 0;
  left: 0;
  -webkit-transition: background 0.3s linear, -webkit-transform 0.3s linear;
  transition: background 0.3s linear, -webkit-transform 0.3s linear;
  transition: background 0.3s linear, transform 0.3s linear;
  transition: background 0.3s linear, transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .head .mark::before {
    top: -1px;
  }
}
.p-service-qa .qa-lst .item .head .mark::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 21px;
  background: #000;
  top: 0;
  left: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: background 0.3s linear, -webkit-transform 0.3s linear;
  transition: background 0.3s linear, -webkit-transform 0.3s linear;
  transition: background 0.3s linear, transform 0.3s linear;
  transition: background 0.3s linear, transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .head .mark::after {
    top: -1px;
  }
}
.p-service-qa .qa-lst .item.is-open .head .mark::before {
  background: #e61264;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-service-qa .qa-lst .item.is-open .head .mark::after {
  background: #e61264;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.p-service-qa .qa-lst .item .body {
  padding: 0 60px 30px 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .body {
    padding: 4.9px 0 13.4px;
  }
}
.p-service-qa .qa-lst .item .body p {
  padding-left: 40px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-service-qa .qa-lst .item .body p {
    padding-left: 0px;
  }
}

/* ------------------------------------------------------------ */
/* news page */
/* ------------------------------------------------------------ */
.p-news-fv {
  background-image: url(../img/news/fv_sp.jpg);
}

.p-news-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  width: calc(100% - 40px);
  margin: 0 auto 160px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-news-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 63px auto 99px;
  }
}

.p-news-category {
  max-width: 760px;
  width: 69.0909090909%;
}
@media screen and (max-width: 767px) {
  .p-news-category {
    width: 100%;
    margin: 0 auto 101px;
  }
}
.p-news-category .common-mini-ttl {
  text-align: left;
  margin-top: -3px;
  margin-bottom: 24px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-news-category .common-mini-ttl {
    font-size: 20px;
    margin-bottom: 19px;
  }
}
.p-news-category .category-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(25px, -5.968px + 4.032vw, 40px);
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst {
    gap: 19.5px;
  }
}
.p-news-category .category-lst .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.1s, opacity 0.1s;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item {
    gap: 12px;
  }
}

.p-news-category .category-lst .item:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

.p-news-category .category-lst .item .content {
  padding-top: 12px;
  width: 490px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .content {
    padding-top: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 3px;
  }
}
.p-news-category .category-lst .item .img {
  aspect-ratio: 250/156;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .img {
    aspect-ratio: 120/90;
    width: clamp(120px, 5.204px + 30.612vw, 240px);
  }
}
@media screen and (max-width: 374px) {
  .p-news-category .category-lst .item .img {
    width: 100px;
  }
}
.p-news-category .category-lst .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-news-category .category-lst .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-news-category .category-lst .item .label {
  padding: 8px 24px;
  color: #e61264;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e61264;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .label {
    padding: 4px 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .p-news-category .category-lst .item .label {
    font-size: clamp(9px, -3px + 4vw, 12px);
  }
}
.p-news-category .category-lst .item .new {
  color: #e61264;
  font-size: 16px;
  margin-left: 12px;
  animation: blinkFade 1.6s ease-in-out infinite;
}
@keyframes blinkFade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .new {
    margin-left: 6px;
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .p-news-category .category-lst .item .new {
    font-size: clamp(10px, -6px + 5.333vw, 14px);
  }
}
.p-news-category .category-lst .item .date {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .date {
    margin-right: 3px;
  }
}
@media screen and (max-width: 374px) {
  .p-news-category .category-lst .item .date {
    font-size: clamp(10px, -6px + 5.333vw, 14px);
  }
}
.p-news-category .category-lst .item .txt {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 26.8px;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-lst .item .txt {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 374px) {
  .p-news-category .category-lst .item .txt {
    font-size: clamp(10px, -6px + 5.333vw, 14px);
    line-height: clamp(17px, 5px + 4vw, 20px);
  }
}
.p-news-category .category-pagination-lst {
  margin-top: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-pagination-lst {
    margin-top: 40px;
    gap: 6px;
  }
}
.p-news-category .category-pagination-lst .item img {
  width: 9.424px;
  height: 16.026px;
}
.p-news-category .category-pagination-lst .item a,
.p-news-category .category-pagination-lst .item span {
  color: #888;
  font-size: 16px;
  font-weight: 500;
  width: 50px;
  height: 50px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-pagination-lst .item a {
    width: clamp(34px, 10px + 8vw, 40px);
    height: clamp(34px, 10px + 8vw, 40px);
  }
}
.p-news-category .category-pagination-lst .item a svg {
  width: 10px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-pagination-lst .item a svg {
    width: 8px;
    height: 14px;
  }
}
.p-news-category .category-pagination-lst .item a:hover {
  color: #fff;
  background: #023e78;
}
.p-news-category .category-pagination-lst .item a:hover svg path {
  fill: #fff;
}
.p-news-category .category-pagination-lst .active span {
  color: #fff;
  background: #023e78;
}
.p-news-category .category-pagination-lst .prev {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-pagination-lst .prev {
    margin-right: 0px;
  }
}
.p-news-category .category-pagination-lst .next {
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-news-category .category-pagination-lst .next {
    margin-left: 0px;
  }
}

/* ------------------------------------------------------------ */
/* single page */
/* ------------------------------------------------------------ */
.p-single-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  width: 96.4912280702%;
  margin: 0 auto 174px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 40px);
    margin-bottom: 100px;
  }
}
.p-single-main .common-mini-ttl {
  text-align: left;
}

.p-single-page {
  max-width: 760px;
  width: 69.0909090909%;
}
@media screen and (max-width: 767px) {
  .p-single-page {
    width: 100%;
    margin-bottom: 100px;
  }
}
.p-single-page .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .p-single-page .head {
    margin-top: -2px;
    margin-bottom: 0px;
  }
}
.p-single-page .head .label {
  color: #e61264;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  border: 1px solid #e61264;
}
@media screen and (max-width: 767px) {
  .p-single-page .head .label {
    font-size: 12px;
    padding: 8px 11px;
  }
}
.p-single-page .head .date {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-single-page .head .date {
    margin-right: 0;
    margin-top: -10px;
  }
}
.p-single-page figure {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-page .img {
    margin-bottom: 39.6px;
  }
}
.p-single-page h1 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 41.3px;
}
@media screen and (max-width: 767px) {
  .p-single-page h1 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 23px;
  }
}
.p-single-page h2 {
  padding: 7px 0 10px 21px;
  background: #f8f8f8;
  border-left: 6px solid #023e78;
  margin-bottom: 18px;
  font-size: 20px;
  color: #023e78;
}
.p-single-page h3 {
  padding-bottom: 6px;
  border-bottom: 1px solid #023e78;
  color: #023e78;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.p-single-page h4 {
  color: #023e78;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-single-page h4 {
    margin-bottom: 14px;
  }
}
.p-single-page p {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 38px;
  padding-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-single-page .txt {
    padding-right: 0;
    margin-bottom: 39px;
  }
}
.p-single-page ul {
  margin-left: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-page ul {
    margin-left: 0;
    margin-bottom: 57px;
  }
}
.p-single-page ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 16px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-single-page ul li {
    margin-bottom: 20px;
  }
}
.p-single-page ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-single-page blockquote {
  width: 85%;
  padding: 33px 35px 33px 31px;
  background: #f8f8f8;
  border-left: 4px solid #023e78;
  margin: 0 0 39px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single-page blockquote {
    width: 100%;
    margin: 0 0 39px 0;
    padding: 30px 35px 30px 28px;
  }
}

.p-single-page blockquote:before {
  content: "";
  position: absolute;
  background-image: url(../img/single/quote.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 14px;
  left: 21px;
  width: 55.5px;
  height: 100px;
}

.p-single-page blockquote p {
  color: #1a1a1a;
  font-size: 14px;
  line-height: 24px;
  z-index: 2;
  position: relative;
}
.p-single-page .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-single-page .btns a {
  padding: 8px 16px;
  border-radius: 4px;
  color: #023e78;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #023e78;
}

/* ------------------------------------------------------------ */
/* study page */
/* ------------------------------------------------------------ */
.p-study-fv {
  background-image: url(../img/study/fv.jpg);
}
@media screen and (max-width: 767px) {
  .p-study-fv {
    background-image: url(../img/study/fv_sp.jpg);
  }
}

.p-study-btns {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-study-btns {
    margin-top: -1px;
  }
}
.p-study-btns .btns-lst {
  max-width: 1100px;
  width: calc(100% - 90px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-study-btns .btns-lst {
    width: calc(100% - 80px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 21px;
  }
}
.p-study-btns .btns-lst .item {
  width: 208px;
  border-radius: 4px;
  background: #eee;
  transform: translateY(50px);
  transition: transform 0.5s linear, opacity 0.5s linear;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-study-btns .btns-lst .item {
    width: 100%;
    opacity: 0;
  }
}
.p-study-btns.original-anime.is-in-view .btns-lst .item {
  transform: translateY(0);
  transition-delay: 0.5s;
  opacity: 1;
}

.p-study-btns.original-anime.is-in-view .btns-lst .item:nth-child(2) {
  transition-delay: 1s;
}
.p-study-btns.original-anime.is-in-view .btns-lst .item:nth-child(3) {
  transition-delay: 1.5s;
}
.p-study-btns .btns-lst .item a {
  display: block;
  padding: 12px 0;
  text-align: center;
  color: #1a1a1a;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s linear, color 0.2s linear;
}

.p-study-btns .btns-lst .item a:hover {
  background-color: #d5d5d5;
  color: #023e78;
}

@media screen and (max-width: 767px) {
  .p-study-btns .btns-lst .item a {
    padding: 11.5px 0;
  }
}

.p-study-cases .cases-ttl-inr {
  max-width: 1100px;
  width: calc(100% - 90px);
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-ttl-inr {
    margin-top: 60px;
    width: calc(100% - 40px);
  }
}
.p-study-cases .cases-ttl {
  border-left: 8px solid #023e78;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1px;
  }
}
.p-study-cases .cases-ttl .main {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-ttl .main {
    margin-top: 2px;
    font-size: clamp(20px, 3.784px + 5.405vw, 24px);
  }
}
.p-study-cases .cases-ttl .sub {
  color: #023e78;
  font-family: "Fira Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-ttl .sub {
    margin-left: 3px;
    font-size: 14px;
  }
}
.p-study-cases .cases-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 66px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 67px;
  margin-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-lst {
    margin-top: 26px;
    gap: 54.4px;
    margin-bottom: 42px;
  }
}
.p-study-cases .cases-item {
  width: 46.3636363636%;
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .p-study-cases .cases-item {
    width: 100%;
  }
}
.p-study-cases .cases-item .head {
  position: relative;
  background: #023e78;
  border-radius: 12px 12px 0 0;
  padding: 18px 0 19px;
  width: 0%;
  white-space: nowrap;
  overflow: visible;
  transition: width 1.3s cubic-bezier(0.25, 0.1, 0.25, 1), padding-left 1s cubic-bezier(0.25, 0.1, 0.25, 1), padding-right 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.p-study-cases .cases-item.original-anime.is-in-view .head {
  width: 100%;
  padding-left: clamp(20px, -61.081px + 27.027vw, 40px);
  padding-right: clamp(20px, -61.081px + 27.027vw, 40px);
}

.p-study-cases .cases-item .head .main,
.p-study-cases .cases-item .head .sub,
.p-study-cases .cases-item .body .ttl,
.p-study-cases .cases-item .body .body-lst {
  opacity: 0;
  transition: opacity 0.6s linear;
  transition-delay: 1.6s;
}

.p-study-cases .cases-item.original-anime.is-in-view .head .main,
.p-study-cases .cases-item.original-anime.is-in-view .head .sub,
.p-study-cases .cases-item.original-anime.is-in-view .body .ttl,
.p-study-cases .cases-item.original-anime.is-in-view .body .body-lst {
  opacity: 1;
}

.p-study-cases .cases-item .head .img {
  opacity: 0;
  transition: opacity 0.6s linear;
  transition-delay: 1.6s;
}

.p-study-cases .cases-item.original-anime.is-in-view .head .img {
  opacity: 1;
}

.p-study-cases .cases-item .head .img img {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s linear, opacity 1s linear;
  transition-delay: 2.4s;
}

.p-study-cases .cases-item.original-anime.is-in-view .head .img img {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .head {
    padding: 18px 20px 19.7px;
  }
}
.p-study-cases .cases-item .head .sub {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .head .sub {
    font-size: clamp(10px, 1.892px + 2.703vw, 12px);
  }
}
.p-study-cases .cases-item .head .main {
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .head .main {
    margin-top: 3px;
    font-size: 16px;
  }
}
.p-study-cases .cases-item .head .main span {
  font-size: 16px;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .head .main span {
    font-size: 14px;
    margin-left: 12px;
  }
}
.p-study-cases .cases-item .head .img {
  position: absolute;
  top: -6px;
  right: 20px;
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .head .img {
    top: 6px;
    right: clamp(8px, -40.649px + 16.216vw, 20px);
    border-radius: 4px;
    width: 90px;
  }
}
.p-study-cases .cases-item .body {
  padding: 41px 40px 38px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .body {
    padding: 22px 20px 16px;
  }
}
.p-study-cases .cases-item .body .ttl {
  color: #1a1a1a;
  font-size: clamp(11.9px, -4.722px + 5.541vw, 16px);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .body .ttl {
    margin-bottom: 21.5px;
  }
}
.p-study-cases .cases-item .body .ttl p:nth-child(2) {
  margin-left: 9px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .cases-item .body .ttl p:nth-child(2) {
    margin-left: 6.5px;
  }
}
.p-study-cases .body-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .body-lst {
    gap: 31px;
  }
}
.p-study-cases .body-lst .label {
  padding-left: 30px;
  position: relative;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-study-cases .body-lst .label {
    font-size: 16px;
    padding-left: 25px;
  }
}
.p-study-cases .body-lst .label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/study/check.png);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-study-cases .body-lst .label::before {
    width: 15px;
    height: 15px;
  }
}
.p-study-cases .body-lst .value {
  margin-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-study-cases .body-lst .value {
    margin-top: 6px;
  }
}

.p-study-cases.last {
  margin-bottom: 157px;
}
@media screen and (max-width: 767px) {
  .p-study-cases.last {
    margin-bottom: 100px;
  }
}

.p-study-cases .common-btn {
  max-width: none;
  width: fit-content;
  padding-right: 80px;
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .p-study-cases .common-btn {
    max-width: 100%;
    width: 295px;
    padding-right: 0;
    padding-left: 0;
    font-size: clamp(12.3px, 5.408px + 2.297vw, 14px);
  }
}

/* ------------------------------------------------------------ */
/* download page */
/* ------------------------------------------------------------ */
.p-download-fv {
  background-image: url(../img/download/fv.jpg);
}
@media screen and (max-width: 767px) {
  .p-download-fv {
    background-image: url(../img/download/fv_sp.jpg);
  }
}

.p-download-main {
  max-width: 1100px;
  width: 96.4912280702%;
  margin: 0 auto 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-download-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    width: calc(100% - 40px);
    margin: 0 auto 100px;
  }
}

.p-download-page {
  width: 46.3636363636%;
}
@media screen and (max-width: 767px) {
  .p-download-page {
    width: 100%;
  }
}
.p-download-page .page-ttl span {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-page .page-ttl span {
    font-size: 20px;
    line-height: 27.9px;
  }
}
.p-download-page .page-img {
  width: 299px;
  margin: 32px auto 23px;
}
@media screen and (max-width: 767px) {
  .p-download-page .page-img {
    margin: 30px auto 25px;
  }
}
@media screen and (max-width: 374px) {
  .p-download-page .page-img {
    width: clamp(240px, 4px + 78.667vw, 299px);
  }
}
.p-download-page .page-txt {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.p-download-page .page-txt p:nth-child(2) {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .p-download-page .page-txt p:nth-child(2) {
    margin-top: 24px;
  }
}

.p-download-form {
  width: 50%;
  border-radius: 12px;
  background: #edf3f8;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-form {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-download-form .form-btn {
  max-width: 336px;
  width: 100%;
  margin: 0 auto;
}
.p-download-form .common-btn {
  max-width: 336px;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-download-form .common-btn {
    max-width: 295px;
  }
}
.p-download-form .common-btn::before {
  position: relative;
}
div.wpcf7 .wpcf7-spinner {
  display: none !important;
}
.p-download-did {
  width: 50%;
  border-radius: 12px;
  background: #edf3f8;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-did {
    width: 100%;
    padding: 37.3px 20px;
  }
}
.p-download-did .did-ttl {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .p-download-did .did-ttl {
    line-height: 40px;
    font-size: 24px;
  }
}
.p-download-did .did-txt p {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.p-download-did .did-txt p:nth-child(2) {
  margin-top: 10px;
}
.p-download-did .did-txt p:nth-child(3) {
  margin-top: 34px;
  line-height: 28px;
}
.p-download-did .did-txt a {
  color: #023e78;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-left: 5px;
}

/* ------------------------------------------------------------ */
/* contact page */
/* ------------------------------------------------------------ */
.p-contact-fv {
  background-image: url(../img/contact/fv.jpg);
}
@media screen and (max-width: 767px) {
  .p-contact-fv {
    background-image: url(../img/contact/fv_sp.jpg);
  }
}

.p-contact-main {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-contact-main {
    margin-bottom: 98px;
  }
}
.p-contact-main .p-contact-main-inr {
  max-width: 687px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact-main .p-contact-main-inr {
    max-width: 100%;
    width: calc(100% - 40px);
  }
}
.p-contact-main .main_txt {
  color: #1a1a1a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 79px;
}
@media screen and (max-width: 767px) {
  .p-contact-main .main_txt {
    margin-bottom: 59px;
  }
}
.p-contact-main .common-mini-ttl {
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .p-contact-main .common-mini-ttl {
    margin-bottom: 34px;
  }
}
.p-contact-main .form-lst {
  gap: 27px;
}
@media screen and (max-width: 767px) {
  .p-contact-main .form-lst {
    gap: 14.1px;
  }
}
.p-contact-main .form-lst .fld .head {
  gap: 11px;
}
.p-contact-main .form-lst .fld .head .label {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-main .form-lst .fld .head .must {
    font-size: 12px;
  }
}
.p-contact-main .common-btn {
  padding: 24px 65px;
  letter-spacing: 15px;
  text-align: center;
  text-indent: 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact-main .common-btn {
    width: 100%;
    padding: 24px 0;
  }
}
.p-contact-main .common-btn::before {
  position: relative;
}

.p-contact-did {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-contact-did {
    margin-bottom: 97px;
  }
}
.p-contact-did .p-contact-did-inr {
  max-width: 687px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact-did .p-contact-did-inr {
    max-width: 100%;
    width: calc(100% - 40px);
  }
}
.p-contact-did .did_txt {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}
.p-contact-did .did_txt span {
  line-height: 24px;
}
.p-contact-did .did_txt p {
  margin-top: 14px;
}
.p-contact-did .did_txt a {
  margin-left: 5px;
  color: #023e78;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* 資料ダウンロードボタン お礼ページ */
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  display: none !important;
}

.wpcf7-select {
  appearance: none;
}

/* testclassと同じスタイルを適用 */
.common-form .form-lst .fld .wpcf7-form-control-wrap[data-name="your-case"] {
  position: relative;
}
.common-form .form-lst .fld .wpcf7-form-control-wrap[data-name="your-case"]::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15.5px;
  width: 11px;
  height: 7px;
  background: url(../img/contact/select-arrow.png) no-repeat center center / contain;
}

.wpcf7-not-valid {
  border-color: #ff0000 !important;
  background-color: #fff5f5;
}

.breadcrumb-lst .item {
  color: #000;
  opacity: 1;
}

.page404 {
  margin-top: 100px;
  padding: 300px 0;
}
@media screen and (max-width: 1279px) {
  .page404 {
    padding: 100px 0;
    margin-top: 60px;
  }
}

.page404 .page404__inr {
  margin: 0 auto;

  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .page404 .page404__inr {
    flex-direction: column;
  }
}

.page404 h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
}

.page404 .btn {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  width: fit-content;
  display: block;
  margin: 20px auto;
}
