@charset "UTF-8";
/*------------------------------------
  Sass モジュールの読み込み
------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap");
/*====================

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

html {
  max-width: 1920px;
  margin-inline: auto;
}

:root {
  --swl-fz--content: 20px;
}
@media (max-width: 480px) {
  :root {
    --swl-fz--content: 16px;
  }
}

body {
  font-weight: 400;
  font-family: "BIZ UDPGothic", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: middle;
  pointer-events: none;
}

.sp-only {
  display: none;
}

@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.l-content {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .top #content,
  #content {
    padding-top: 0;
  }
}

.c-widget__title.-spmenu {
  background: #fff;
  color: #333;
}

.p-spMenu__inner::before {
  background: #fff;
}

#before_footer_widget.w-beforeFooter {
  margin: 0 auto;
}

.text-shadow1 {
  text-shadow: #fff 1px 1px 14px, #fff -1px 1px 14px, #fff 1px -1px 14px, #fff -1px -1px 14px;
}

.mx-auto {
  margin-inline: auto;
}

.c-message-box {
  width: fit-content;
  background-color: #17385C;
  padding: 12px 40px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}

.c-title-underline {
  padding-bottom: 10px;
  font-size: 24px;
  border-bottom: solid 1px #D0D8E4;
  margin-bottom: 1em !important;
}

.c-border_left {
  border-left: solid 3px #FF7575;
  background-color: #FFF0F0;
  padding: 10px 12px;
  font-size: 16px;
}

.c-list-has-icon {
  list-style: none;
  border-left: solid 3px #FF7575;
  background-color: #FFF0F0;
  padding: 10px 12px 10px 20px;
}
.c-list-has-icon li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
.c-list-has-icon li:before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/exclamation-triangle-fill.svg") center/cover no-repeat;
  width: 20px;
  height: 20px;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}

/*====================
fadeUp
====================*/
.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*====================
fv
====================*/
@media (max-width: 1024px) {
  .fv.has-form .fv__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.fv.has-form .fv__inner__left {
  width: 61%;
  background: url("/wp-content/uploads/fv01.webp") bottom/contain no-repeat;
  padding-left: 100px;
}
@media (max-width: 1440px) {
  .fv.has-form .fv__inner__left {
    padding-left: 4vw;
    background-position: 50% 70%;
  }
}
@media (max-width: 1024px) {
  .fv.has-form .fv__inner__left {
    width: 100%;
    height: 70vw;
  }
}
@media (max-width: 768px) {
  .fv.has-form .fv__inner__left {
    width: 100%;
    height: 90vw;
    padding-right: 4vw;
  }
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left {
    height: 50vh;
    height: 110vw;
    background-position: bottom;
  }
}
.fv.has-form .fv__inner__left .badge {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left .badge {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.fv.has-form .fv__inner__left .badge p {
  background-color: #e5e5e5;
  padding: 10px 20px;
  border: solid 1px #555;
  border-radius: 100px;
  line-height: 1;
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left .badge p {
    font-size: 14px;
    padding: 8px;
  }
}
.fv.has-form .fv__inner__left .title-wrap {
  margin-bottom: 20px;
}
.fv.has-form .fv__inner__left .title-wrap .title {
  font-size: 48px;
  font-weight: 700;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  width: fit-content;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .fv.has-form .fv__inner__left .title-wrap .title {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .fv.has-form .fv__inner__left .title-wrap .title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left .title-wrap .title {
    font-size: 5vw;
  }
}
.fv.has-form .fv__inner__left .title-wrap .title .swl-fz.u-fz-l {
  font-size: 64px !important;
}
@media (max-width: 1440px) {
  .fv.has-form .fv__inner__left .title-wrap .title .swl-fz.u-fz-l {
    font-size: 50px !important;
  }
}
@media (max-width: 1200px) {
  .fv.has-form .fv__inner__left .title-wrap .title .swl-fz.u-fz-l {
    font-size: 46px !important;
  }
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left .title-wrap .title .swl-fz.u-fz-l {
    font-size: 6vw !important;
  }
}
.fv.has-form .fv__inner__left .text-wrap .text {
  font-size: 26px;
  font-weight: 400;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  width: fit-content;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .fv.has-form .fv__inner__left .text-wrap .text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .fv.has-form .fv__inner__left .text-wrap .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .fv.has-form .fv__inner__left .text-wrap .text {
    font-size: 4vw;
    line-height: 1.4;
  }
}
.fv.has-form .fv__inner__right {
  width: 39%;
  padding: 0 20px 40px;
}
@media (max-width: 1024px) {
  .fv.has-form .fv__inner__right {
    width: 100%;
  }
}
.fv.has-form .fv__inner__right .wpcf7 {
  max-width: 490px;
  margin-inline: auto;
}

.page-id-583 .fv.has-form .fv__inner__left {
  background: url("/wp-content/uploads/fv04.webp") bottom/contain no-repeat;
}

.page-id-752 .fv.has-form .fv__inner__left {
  background: url("/wp-content/uploads/fv02.webp") bottom/contain no-repeat;
}

.page-id-771 .fv.has-form .fv__inner__left {
  background: url("/wp-content/uploads/fv03.webp") bottom/contain no-repeat;
}

/*====================
section-title
====================*/
.section-title {
  margin-bottom: 70px;
}
.section-title .title-en {
  font-size: 32px;
  font-weight: 700;
  color: rgba(153, 135, 59, 0.6);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .section-title .title-en {
    font-size: 5vw;
  }
}
.section-title h2.is-style-section_ttl.title-ja {
  font-size: 32px;
  padding-bottom: 12px;
}
@media (max-width: 480px) {
  .section-title h2.is-style-section_ttl.title-ja {
    font-size: 6vw;
  }
}
.section-title h2.is-style-section_ttl.title-ja:after {
  height: 3px;
  background: #99873B;
}
.section-title .subTitle {
  font-size: 16px;
  margin-top: 30px;
  text-align: center;
}

/*====================

====================*/
.section.cta1 .item {
  background-color: #fff;
  padding: 40px 32px;
  border-radius: 8px;
}
.section.cta1 .item .title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.section.cta1 .item .title:after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  background-color: #222;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section.cta1 .item .text {
  text-align: center;
  line-height: 1.4;
}
.section.cta1 .text-bottom {
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.section.cta1 .text-bottom a {
  color: #fff;
}

.section.cta2 .inner {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}
.section.cta2 .inner .title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .section.cta2 .inner .title {
    font-size: 24px;
  }
}
.section.cta2 .inner .title:after {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  background-color: #222;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section.cta2 .inner .text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section.cta2 .inner .btn a {
  padding: 0.75em 3em;
}
@media (max-width: 480px) {
  .section.cta2 .inner .btn a {
    padding: 0.75em 1em;
  }
}
.section.cta2 .inner .icon1,
.section.cta2 .inner .icon2 {
  position: absolute;
  bottom: 0;
}
.section.cta2 .inner .icon1 img,
.section.cta2 .inner .icon2 img {
  height: 220px;
  width: auto;
}
@media (max-width: 768px) {
  .section.cta2 .inner .icon1 img,
  .section.cta2 .inner .icon2 img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .section.cta2 .inner .icon1 img,
  .section.cta2 .inner .icon2 img {
    height: 100px;
  }
}
.section.cta2 .inner .icon1 {
  left: 30px;
}
@media (max-width: 768px) {
  .section.cta2 .inner .icon1 {
    left: 10px;
  }
}
@media (max-width: 480px) {
  .section.cta2 .inner .icon1 {
    left: 0;
  }
}
.section.cta2 .inner .icon2 {
  right: 30px;
}
@media (max-width: 768px) {
  .section.cta2 .inner .icon2 {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .section.cta2 .inner .icon2 {
    right: 0;
  }
}

.section.price .container {
  border: solid 10px #00C2C2;
  border-radius: 20px;
  max-width: 600px;
  margin-bottom: 70px;
}
.section.price .container .title {
  text-align: center;
  background-color: #00C2C2;
  color: #fff;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
.section.price .container .inner {
  padding: 40px 30px;
}
.section.price .container .inner .price-icon {
  flex-direction: row;
  margin-bottom: 20px;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .section.price .container .inner .price-icon {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.section.price .container .inner .price-icon .price {
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 480px) {
  .section.price .container .inner .price-icon .price {
    font-size: 24px;
  }
}
.section.price .container .inner .price-icon .price .swl-inline-color.has-swl-main-color {
  font-size: 96px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -3px;
}
@media (max-width: 480px) {
  .section.price .container .inner .price-icon .price .swl-inline-color.has-swl-main-color {
    font-size: 80px;
  }
}
@media (max-width: 390px) {
  .section.price .container .inner .price-icon .price .swl-inline-color.has-swl-main-color {
    font-size: 70px;
  }
}
.section.price .container .inner .price-icon .icon {
  width: 115px;
  height: auto;
  padding-bottom: 10px;
}
.section.price .container .inner .info {
  font-size: 16px;
  margin-bottom: 1em;
}
.section.price .container .inner .text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
.section.price .container .inner .text.ta-l {
  text-align: left;
  padding: 0 2em;
}
.section.price .btn-wrap {
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .section.price .btn-wrap {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .section.price .btn-wrap .btn a {
    width: 95%;
  }
}

.section.problem .column .item {
  border: solid 3px #424242;
  padding: 24px 20px;
  border-radius: 12px;
  background-color: #fff;
}
.section.problem .column .item .icon {
  flex-shrink: 0;
}
.section.problem .column .item .icon img {
  width: 130px;
}
@media (max-width: 480px) {
  .section.problem .column .item .icon img {
    width: 80px;
  }
}
.section.problem .column.column4 .item .text-wrap .text1 {
  font-size: 24px;
  font-weight: 700;
  border-bottom: dashed 2px #00C2C2;
  padding-bottom: 6px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .section.problem .column.column4 .item .text-wrap .text1 {
    font-size: 20px;
  }
}
.section.problem .column.column4 .item .text-wrap .text2 {
  padding-top: 6px;
  line-height: 1.4;
}
.section.problem .column.column2 .item .title {
  font-size: 30px;
  border-bottom: dashed 2px #00C2C2;
  padding-bottom: 2px;
  margin: 0 0 20px;
}
@media (max-width: 480px) {
  .section.problem .column.column2 .item .title {
    font-size: 24px;
  }
}
.section.problem .column.column2 .item .list {
  list-style: none;
}
.section.problem .column.column2 .item .list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.section.problem .column.column2 .item .list li:before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/check-gray.svg") center/contain no-repeat;
  width: 28px;
  height: 28px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.section.problem .text-bottom {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .section.problem .text-bottom {
    font-size: 6vw;
  }
}

.section.service .inner .swell-block-columns__inner {
  justify-content: center;
  row-gap: 5em;
}
.section.service .inner .swell-block-columns__inner .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.service .inner .swell-block-columns__inner .item .title {
  display: inline-block;
  background-color: #00C2C2;
  color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .section.service .inner .swell-block-columns__inner .item .title {
    font-size: 22px;
  }
}
.section.service .inner .swell-block-columns__inner .item .text {
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  margin: 16px 0;
}
@media (max-width: 1024px) {
  .section.service .inner .swell-block-columns__inner .item .text {
    font-size: 18px;
  }
}
.section.service .inner .swell-block-columns__inner .item .list {
  display: flex;
  list-style: none;
  gap: 10px;
  padding-left: unset;
  flex-wrap: wrap;
  justify-content: center;
}
.section.service .inner .swell-block-columns__inner .item .list li {
  padding: 8px 12px;
  background-color: #17385C;
  color: #fff;
  font-size: 16px;
}
.section.service .inner .swell-block-columns__inner .item .desc-wrap .desc-item {
  font-size: 16px;
  flex-direction: row;
}
.section.service .inner .swell-block-columns__inner .item .desc-wrap .desc-item .left {
  flex-shrink: 0;
}
.section.service .inner .swell-block-columns__inner .item .desc {
  margin-top: 1em;
  font-size: 16px;
  max-width: 480px;
}

.section.compatible .inner {
  max-width: 1020px;
}
.section.compatible .inner .item {
  background-color: #fff;
  padding: 18px;
  border: solid 1px #333;
  border-radius: 6px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.section.compatible .inner .item .icon {
  margin-bottom: 10px;
}
.section.compatible .inner .item .icon img {
  height: 60px !important;
  width: auto !important;
}
.section.compatible .inner .item .title {
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .section.compatible .inner .item .title {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .section.compatible .inner .item .title {
    font-size: 15px;
  }
}
.section.compatible .inner .item .title a {
  text-decoration: underline;
  color: #1060FF;
  position: relative;
}
.section.compatible .inner .item .title a:after {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/box-arrow-in-right.svg") center/contain no-repeat;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.section.reason .inner {
  max-width: 1000px;
}
.section.reason .inner .item {
  margin-bottom: 30px;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 480px) {
  .section.reason .inner .item {
    flex-direction: column;
  }
}
.section.reason .inner .item .text-wrap {
  flex: 0 0 568px;
  padding: 24px;
}
@media (max-width: 1024px) {
  .section.reason .inner .item .text-wrap {
    flex: 0 0 60%;
  }
}
@media (max-width: 768px) {
  .section.reason .inner .item .text-wrap {
    padding: 24px 12px;
  }
}
.section.reason .inner .item .text-wrap .number {
  flex-direction: row;
  color: #00C2C2;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  align-items: flex-end;
  gap: 5px;
}
.section.reason .inner .item .text-wrap .number .number1 {
  font-size: 24px;
  line-height: 1;
  padding-bottom: 8px;
}
.section.reason .inner .item .text-wrap .number .number2 {
  font-size: 64px;
  line-height: 1;
}
.section.reason .inner .item .text-wrap .title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .section.reason .inner .item .text-wrap .title {
    font-size: 20px;
  }
}
.section.reason .inner .item .text-wrap .text {
  font-size: 18px;
}
@media (max-width: 480px) {
  .section.reason .inner .item .text-wrap .text {
    font-size: 16px;
  }
}
.section.reason .inner .item .image {
  flex: 0 0 432px;
}
@media (max-width: 1024px) {
  .section.reason .inner .item .image {
    flex: 0 0 40%;
  }
}

.section.track-record {
  background-size: contain;
  background-repeat: repeat;
}
.section.track-record .inner {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section.track-record .inner .item {
  padding-left: 20px;
  padding-right: 20px;
}
.section.track-record .inner .item .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.section.track-record .inner .item .number-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.section.track-record .inner .item .number-wrap .number {
  font-size: 128px;
  font-weight: 700;
  color: #00C2C2;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}
.section.track-record .inner .item .number-wrap .unit {
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}

.section.voice .inner {
  max-width: 1020px;
}
.section.voice .inner .item {
  border-radius: 6px;
  padding: 20px;
}
.section.voice .inner .item1 {
  background-color: #00C2C2;
}
.section.voice .inner .item2 {
  background-color: #17385C;
}
.section.voice .inner .item .tag-wrap {
  gap: 12px;
}
.section.voice .inner .item .tag-wrap .tag {
  background-color: #fff;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 16px;
}
.section.voice .inner .item .voice-wrap {
  gap: 10px;
  align-items: center;
}
.section.voice .inner .item .voice-wrap .icon {
  background-color: #fff;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.voice .inner .item .voice-wrap .icon img {
  width: 100px;
}
.section.voice .inner .item .voice-wrap .text-wrap .user-voice {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.section.voice .inner .item .voice-wrap .text-wrap .name {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.section.voice .inner .item .desc {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.section.support .inner {
  flex-wrap: wrap;
  row-gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  justify-content: center;
}
.section.support .inner.step6 {
  max-width: 1200px;
}
.section.support .inner .item-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.section.support .inner .item-wrap .item {
  background-color: #fff;
  padding: 20px 30px 15px 30px;
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%, 20px 50%);
  width: 200px;
  position: relative;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .section.support .inner .item-wrap .item {
    width: 185px;
    padding: 20px 20px 15px 20px;
  }
}
.section.support .inner .item-wrap .item .number {
  color: #00C2C2;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}
.section.support .inner .item-wrap .item .text {
  color: #17385C;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.section.support .inner .item-wrap .item .tag {
  background-color: #00C2C2;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  padding: 2px 12px;
  font-weight: 700;
}
.section.support .inner .item-wrap .item.navy {
  background-color: #17385C;
}
.section.support .inner .item-wrap .item.navy .number {
  color: #fff;
}
.section.support .inner .item-wrap .item.navy .text {
  color: #fff;
}
.section.support .inner .item-wrap .item.navy .tag {
  background-color: #fff;
  color: #17385C;
}
.section.support .inner .item-wrap .icon {
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 2;
}
.section.support .inner .item-wrap .icon img {
  height: 48px;
  width: auto;
}
.section.support .swell-block-step {
  width: fit-content;
  margin-bottom: 3em;
}
.section.support .swell-block-step__item {
  padding: 0 0 2em 64px;
}
.section.support .swell-block-step__item::before {
  border-left: 1px solid #00C2C2;
}
.section.support .swell-block-step__item .swell-block-step__body {
  margin-top: 0;
}

.section.overview .swell-block-accordion .swell-block-accordion__item .swell-block-accordion__title {
  border-bottom: solid 1px #D0D8E4;
  background: #fff;
}
.section.overview .swell-block-accordion .swell-block-accordion__item .swell-block-accordion__body {
  padding: 1em 0 0;
}
.section.overview .wp-block-table {
  margin-bottom: 1em;
}

.section.job-scope .swell-block-tab .c-tabList .c-tabList__item {
  margin-bottom: 30px;
}
.section.job-scope .swell-block-tab .c-tabList .c-tabList__item .c-tabList__button {
  font-size: 24px;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(23, 56, 92, 0.2);
}
@media (max-width: 768px) {
  .section.job-scope .swell-block-tab .c-tabList .c-tabList__item .c-tabList__button {
    font-size: 20px;
    line-height: 1.4;
  }
}
.section.job-scope .swell-block-tab .c-tabList .c-tabList__item .c-tabList__button[aria-selected=true] {
  color: #222;
}
.section.job-scope .swell-block-tab .c-tabList .c-tabList__item .c-tabList__button::after {
  background-color: #222;
}
.section.job-scope .swell-block-tab .c-tabList .c-tabList__item .c-tabList__button:hover {
  color: #222;
}
.section.job-scope .swell-block-tab .c-tabBody__item .group1 {
  margin-bottom: 2em;
}
.section.job-scope .swell-block-tab .c-tabBody__item .group1 .wp-block-table {
  margin-bottom: 10px;
}
.section.job-scope .swell-block-tab .c-tabBody__item .group2 h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.section.supported-countries .group {
  max-width: 950px;
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
}
.section.supported-countries .list-country {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.section.supported-countries .list-country li {
  border: solid 1px #17385C;
  border-radius: 3px;
  padding: 5px 10px;
  color: #17385C;
}

.section.faq .swell-block-accordion__item .swell-block-accordion__title span.swell-block-accordion__label {
  position: relative;
  padding-left: 40px;
}
.section.faq .swell-block-accordion__item .swell-block-accordion__title span.swell-block-accordion__label:before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/icon-question.svg") center/contain no-repeat;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section.faq .swell-block-accordion__item .swell-block-accordion__body .answer.wp-block-paragraph {
  position: relative;
  padding-left: 40px;
}
.section.faq .swell-block-accordion__item .swell-block-accordion__body .answer.wp-block-paragraph:before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/icon-answer.svg") center/contain no-repeat;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section.faq .swell-block-accordion:last-of-type {
  margin-bottom: 4em;
}

.section.gijinkoku .column .item {
  border: solid 1px #dcdcdc;
}
.section.gijinkoku .column .item .title {
  font-size: 24px;
  font-weight: 700;
  background-color: #f3f3f3;
  padding: 10px 20px;
  border-bottom: solid 1px #dcdcdc;
  margin-bottom: 0;
}
.section.gijinkoku .column .item .text-wrap {
  padding: 0.5em 0.75em;
}
.section.gijinkoku .column .item .text-wrap p {
  margin-bottom: 1em;
}
.section.gijinkoku h3 {
  margin-bottom: 10px;
}

/*====================
コンタクトフォーム
====================*/
.cf7-container {
  background-color: #1a365d;
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  font-size: 16px;
}
@media (max-width: 480px) {
  .cf7-container {
    padding: 20px 10px;
  }
}
.cf7-container .form-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0px;
}
@media (max-width: 480px) {
  .cf7-container .form-title {
    font-size: 4vw;
  }
}
.cf7-container .white-box {
  background: #fff;
  color: #333;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 16px;
}
.cf7-container .white-box p {
  line-height: 1.4;
}
.cf7-container label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
.cf7-container .required {
  color: #E53935;
  font-size: 0.8rem;
}
.cf7-container input,
.cf7-container select {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 4px;
  min-height: 48px;
}
.cf7-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.cf7-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  margin-bottom: 0;
}
.cf7-container .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .consent-checkbox {
  width: unset;
  min-height: unset;
}
.cf7-container .submit-btn {
  width: 100%;
  background-color: #a68940 !important;
  color: #fff;
  font-weight: bold;
  padding: 15px !important;
  cursor: pointer;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}
.cf7-container .wpcf7-spinner {
  display: none;
}
.cf7-container .footer-links {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 480px) {
  .cf7-container .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.cf7-container .footer-links a {
  color: #fff;
}

.l-header__inner.l-container,
.l-fixHeader__inner.l-container {
  max-width: 1920px;
  padding-bottom: 10px;
}

.l-fixHeader .l-fixHeader__inner.l-container {
  justify-content: space-between;
}
.l-fixHeader .l-fixHeader__inner.l-container .w-header.pc_ {
  display: none;
}

.cus-header__wrap,
.cus-fixHeader__wrap {
  padding: 10px 0;
}
.cus-header__wrap .w-header.pc_,
.cus-header__wrap .cus-w-header.pc_,
.cus-fixHeader__wrap .w-header.pc_,
.cus-fixHeader__wrap .cus-w-header.pc_ {
  margin-bottom: 14px;
  justify-content: flex-end;
}
.cus-header__wrap .w-header.pc_ .w-header__inner .header_btn,
.cus-header__wrap .cus-w-header.pc_ .w-header__inner .header_btn,
.cus-fixHeader__wrap .w-header.pc_ .w-header__inner .header_btn,
.cus-fixHeader__wrap .cus-w-header.pc_ .w-header__inner .header_btn {
  gap: 20px;
  justify-content: flex-end;
}
.cus-header__wrap .w-header.pc_ .w-header__inner .header_btn .btn a,
.cus-header__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn a,
.cus-fixHeader__wrap .w-header.pc_ .w-header__inner .header_btn .btn a,
.cus-fixHeader__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn a {
  border-radius: 100px;
  border: solid 3px #a68940;
  padding: 10px 30px;
}
@media (max-width: 1024px) {
  .cus-header__wrap .w-header.pc_ .w-header__inner .header_btn .btn a,
  .cus-header__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn a,
  .cus-fixHeader__wrap .w-header.pc_ .w-header__inner .header_btn .btn a,
  .cus-fixHeader__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn a {
    padding: 6px 20px;
  }
}
.cus-header__wrap .w-header.pc_ .w-header__inner .header_btn .btn.btn1 a,
.cus-header__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn.btn1 a,
.cus-fixHeader__wrap .w-header.pc_ .w-header__inner .header_btn .btn.btn1 a,
.cus-fixHeader__wrap .cus-w-header.pc_ .w-header__inner .header_btn .btn.btn1 a {
  background-color: #fff;
  color: #a68940;
}

.l-header__gnav.c-gnavWrap .c-gnav,
.l-fixHeader__gnav.c-gnavWrap .c-gnav {
  justify-content: flex-end;
}
.l-header__gnav.c-gnavWrap .c-gnav .menu-item a::after,
.l-fixHeader__gnav.c-gnavWrap .c-gnav .menu-item a::after {
  bottom: -10px;
}
.l-header__gnav.c-gnavWrap .c-gnav .menu-item a .ttl,
.l-fixHeader__gnav.c-gnavWrap .c-gnav .menu-item a .ttl {
  font-size: 16px;
}
.l-header__gnav.c-gnavWrap .c-gnav .menu-item.-current a::after,
.l-fixHeader__gnav.c-gnavWrap .c-gnav .menu-item.-current a::after {
  display: none;
}
.l-header__gnav.c-gnavWrap .c-gnav .menu-item.-current a .ttl,
.l-fixHeader__gnav.c-gnavWrap .c-gnav .menu-item.-current a .ttl {
  color: #ccc;
}

.l-header__customBtn.sp_ {
  display: none;
}

.p-spMenu__bottom.w-spMenuBottom .header_btn {
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 959px) {
  .p-spMenu__bottom.w-spMenuBottom .header_btn {
    flex-direction: column;
    align-items: center;
  }
}
.p-spMenu__bottom.w-spMenuBottom .header_btn .btn a {
  border-radius: 100px;
  border: solid 3px #a68940;
  padding: 10px 30px;
}
@media (max-width: 1024px) {
  .p-spMenu__bottom.w-spMenuBottom .header_btn .btn a {
    padding: 6px 20px;
  }
}
@media (max-width: 959px) {
  .p-spMenu__bottom.w-spMenuBottom .header_btn .btn a {
    padding: 10px 30px;
    width: 60vw;
  }
}
@media (max-width: 480px) {
  .p-spMenu__bottom.w-spMenuBottom .header_btn .btn a {
    width: 80vw;
  }
}
.p-spMenu__bottom.w-spMenuBottom .header_btn .btn.btn1 a {
  background-color: #fff;
  color: #a68940;
}
.p-spMenu__bottom.w-spMenuBottom .c-widget.widget_media_image {
  text-align: center;
}

.p-breadcrumb {
  display: none;
}

/*====================
ハンバーガーメニュー
====================*/
.p-spMenu__inner {
  width: 100vw;
}

.-right .p-spMenu__inner {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
}

[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-footer .l-footer__inner .l-footer__widgetArea {
  padding-top: 3em;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box {
  flex: 0 0 auto;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) {
  display: flex;
  gap: 4em;
}
@media (max-width: 1024px) {
  .l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) {
    gap: 2em;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) {
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) {
    flex-direction: column;
  }
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu {
  margin-top: 0;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .c-widget__title.-footer {
  font-size: 20px;
  margin-bottom: 0;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .menu .menu-item {
  position: relative;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .menu .menu-item a {
  padding: 0.75em 0.5em 0 0;
  display: inline-block;
  border-bottom: none;
  padding-bottom: 5px;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .menu .menu-item a::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transition: width 0.25s, height 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, width 0.25s, height 0.25s;
  transition: transform 0.25s, width 0.25s, height 0.25s, -webkit-transform 0.25s;
  background: #fff;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .menu .menu-item:hover {
  background-color: unset;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(2) .c-widget.c-listMenu.widget_nav_menu .menu .menu-item:hover a:after {
  transform: scaleX(1);
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(3) .title {
  font-size: 20px;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(3) p {
  margin-bottom: 10px;
}
.l-footer .l-footer__inner .l-footer__widgetArea .w-footer__box:nth-of-type(3) .swell-block-button__link {
  background-color: #fff;
  color: #4D4948;
}
.l-footer .l-footer__foot {
  padding-bottom: 3em;
}

/*====================
mv
====================*/
@media (max-width: 959px) {
  #main_visual.-margin-on {
    padding: 0;
  }
}
#main_visual .p-mainVisual__inner .p-mainVisual__slide {
  position: relative;
}
#main_visual .p-mainVisual__inner .p-mainVisual__slide .p-mainVisual__textLayer .p-mainVisual__slideTitle {
  line-height: 1.2;
  will-change: transform, animation, opacity;
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1s;
  opacity: 0;
}
#main_visual .p-mainVisual__inner .p-mainVisual__slide .p-mainVisual__textLayer .p-mainVisual__slideText {
  margin-top: 40px;
  padding-left: 10px;
  will-change: transform, animation, opacity;
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
@media (max-width: 959px) {
  #main_visual .p-mainVisual__inner .p-mainVisual__slide .p-mainVisual__textLayer .p-mainVisual__slideText {
    margin-top: 20px;
  }
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*====================

====================*/
/*====================

====================*/
.page-id-877 .l-content {
  margin-bottom: 6em;
}
.page-id-877 .fv.has-form .fv__inner__left {
  background: unset;
  padding-left: 15vw;
}
@media (max-width: 1024px) {
  .page-id-877 .fv.has-form .fv__inner__left {
    height: auto;
    margin-bottom: 3em;
    padding-left: 20px;
    align-items: center;
  }
}
.page-id-877 .fv.has-form .fv__inner__left .title-wrap {
  align-items: flex-start;
  border-left: solid 18px #1a365d;
  padding-left: 10px;
  margin-bottom: 2em;
}
.page-id-877 .fv.has-form .fv__inner__left .title-wrap .title {
  font-size: 30px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .page-id-877 .fv.has-form .fv__inner__left .title-wrap .title {
    font-size: 24px;
  }
}
.page-id-877 .fv.has-form .fv__inner__left .list-wrap {
  background-color: #f3f3f3;
  padding: 20px 30px;
  border-radius: 10px;
  width: fit-content;
}
.page-id-877 .fv.has-form .fv__inner__left .list-wrap .title {
  font-size: 24px;
  font-weight: 700;
}
.page-id-877 .fv.has-form .fv__inner__left .list-wrap .list {
  list-style: none;
}
.page-id-877 .fv.has-form .fv__inner__left .list-wrap .list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.page-id-877 .fv.has-form .fv__inner__left .list-wrap .list li:before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/check-navy.svg") center/contain no-repeat;
  width: 28px;
  height: 28px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.page-id-877 .w-beforeFooter {
  display: none;
}

/*====================

====================*/
.page-id-143 .l-content {
  margin-bottom: 6em;
}
.page-id-143 .l-content .section-title {
  margin-bottom: 1em;
}
.page-id-143 .l-content .text {
  text-align: center;
}
.page-id-143 .l-content .image-startbook {
  margin-bottom: 5em;
}
.page-id-143 .l-content .banner {
  max-width: 687px;
  margin-bottom: 5em;
}
.page-id-143 .w-beforeFooter {
  display: none;
}/*# sourceMappingURL=style_cus.css.map */