.header {
  height: 67px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3.75vw;
  width: 93%;
  margin-inline: auto;
  position: fixed;
  z-index: 10;
  top: 14px;
  left: 3.5%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    gap: 2vw;
  }
}
.header__logo img {
  width: 9.4rem;
}
.header__logo span {
  display: block;
  padding: 5px 2rem;
  background-color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  border-radius: 13px;
}
.header__logo.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__logo.sp-only {
    display: flex;
    justify-content: center;
  }
}

#wpadminbar {
  display: none !important;
}

.toggle-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .toggle-btn {
    display: block;
    margin-left: auto;
    width: 26px;
    height: 19px;
    position: relative;
    z-index: 100;
  }
}
@media screen and (max-width: 768px) {
  .toggle-btn span {
    display: inline-block;
    width: 26px;
    height: 3px;
    background: #3850a0;
    position: absolute;
    transition: 0.5s;
  }
}
.toggle-btn span:first-child {
  top: 0;
  left: 0;
}
.toggle-btn span:nth-child(2) {
  top: 50%;
  left: 0;
}
.toggle-btn span:last-child {
  top: 100%;
  left: 0;
}
.toggle-btn.is-active span {
  transition: 0.5s;
}
.toggle-btn.is-active span:first-child {
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}
.toggle-btn.is-active span:nth-child(2) {
  top: 50%;
  left: 0;
  opacity: 0;
}
.toggle-btn.is-active span:last-child {
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .header-nav {
    padding: 10vw 5vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: -14px;
    right: -110vw;
    transition: 0.5s ease-in-out;
  }
}
.header-nav.is-active {
  right: -3.5vw;
  transition: 0.5s ease-in-out;
}

.header-lists {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header-lists {
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin-top: 18vw;
  }
}

.header-list {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .header-list {
    font-size: 18px;
  }
}

.header__link {
  font-size: max(1.4rem, 11px);
  font-weight: 700;
  color: #fff;
  padding: 13px 30px;
  font-family: var(--en-primary-font);
  background: linear-gradient(to right, #2b3cc1 0%, #b4c8ff 100%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .header__link {
    margin: 40px auto 0;
    width: 200px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header__link.pc-only {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .header__link.sp-only {
    display: block;
  }
}

.header__link-wrap {
  display: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__link-wrap {
    display: block;
  }
}

.c-fv {
  position: relative;
  width: 100%;
  padding: 160px 6vw 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-fv {
    height: auto;
    padding: 150px 2rem 0;
  }
}
@media screen and (max-width: 430px) {
  .c-fv {
    height: 100vh;
    padding: 120px 0;
  }
}

@media screen and (max-width: 768px) {
  .c-fv-box {
    margin-left: 4rem;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 430px) {
  .c-fv-box {
    margin-left: 1rem;
    margin-bottom: 40px;
  }
}
.c-fv-box span {
  font-family: "Chillax-Regular";
  font-weight: 400;
  font-size: 4.86vw;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}
@media screen and (max-width: 768px) {
  .c-fv-box span {
    font-size: 4rem;
    line-height: 1.375;
  }
}
.c-fv-box span:after {
  content: "";
  border-right: 1px solid #333;
  margin-left: 2px;
  animation: flashing 1s linear infinite;
  opacity: 0;
}
.c-fv-box span.no-border:after {
  border-right: none;
}
@keyframes flashing {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.c-fv-box span .sp-only {
  display: none;
}
@media screen and (max-width: 430px) {
  .c-fv-box span .sp-only {
    display: block;
  }
}
.c-fv-box h1 {
  font-size: max(1.666vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .c-fv-box h1 {
    margin-top: 30px;
  }
}
.c-fv-box h1:after {
  content: "";
  border-right: 1px solid #333;
  margin-left: 2px;
  animation: flashing 1s linear infinite;
  opacity: 0;
}

.c-fv__img {
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-fv__img {
    position: static;
    width: calc(100% - 4rem);
    margin-left: 2rem;
  }
}
@media screen and (max-width: 430px) {
  .c-fv__img {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}

.fv-txt {
  position: absolute;
  top: 182px;
  left: 10.2vw;
}
@media screen and (max-width: 768px) {
  .fv-txt {
    width: 90vw;
    left: 5vw;
  }
}
.fv-txt.pc-only {
  display: block;
}
@media screen and (max-width: 430px) {
  .fv-txt.pc-only {
    display: none;
  }
}
.fv-txt.sp-only {
  display: none;
}
@media screen and (max-width: 430px) {
  .fv-txt.sp-only {
    display: block;
  }
}

:root {
  --jp-primary-font: "Noto Sans JP", sans-serif;
  --jp-secondary-font: "Zen Kaku Gothic New", sans-serif;
  --jp-tertiary-font: ;
  --jp-quaternary-font: ;
  --en-primary-font: "Montserrat";
  --en-secondary-font: "Noto Sans", sans-serif;
  --en-tertiary-font: "";
  --en-quaternary-font: "";
  --primary-color: #3850A0;
  --secondary-color: ;
  --tertiary-color: ;
  --quaternary-color: ;
  --quinary-color: ;
  --senary-color: ;
  --septenary-color: ;
  --octonary-color: ;
  --nonary-color: ;
  --denary-color: ;
  --undenary-color: ;
  --duodecuple-color: ;
  --tridecuple-color: ;
  --quatuordecuple-color: ;
  --quindecuple-color: ;
  --sedecuple-color: ;
  --txt-color: #222222;
  --bg-color: #F4F6F8;
  --border-color: #707070;
}

:root {
  font-size: 0.694444vw;
  scroll-behavior: smooth;
  --swiper-space-between: 3.2vw;
}
@media screen and (min-width: 1441px) {
  :root {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 1.302083vw !important;
  }
}
@media screen and (max-width: 430px) {
  :root {
    font-size: 2.325581vw !important;
  }
}

body {
  color: var(--txt-color);
  font-family: var(--jp-primary-font);
  font-weight: 700;
  line-height: 1;
}

section,
div {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  section,
  div {
    scroll-margin-top: 50px;
  }
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

li {
  list-style: none;
}

.footer-wrap-02 {
  background: #000;
  padding: 60px 10vw 35px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-wrap-02 {
    padding: 60px 5vw 35px;
  }
}
.footer-wrap-02.chenge-style {
  border-radius: 30px;
}

.footer-wrap-02-flex-box {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .footer-wrap-02-flex-box {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .footer-wrap-co {
    display: flex;
    gap: 4vw;
  }
}
.footer-wrap-co img {
  width: 88px;
}

.footer-wrap-02-container {
  max-width: 620px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer-wrap-02-box-content {
    width: calc((100% - 5vw) / 2);
  }
}

.footer-wrap-co-box__txt {
  display: block;
  margin-top: 17px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer-wrap-co-box__txt {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 430px) {
  .footer-wrap-co-box__txt {
    font-size: 17px;
  }
}

.footer-wrap-co-box__en-txt {
  display: block;
  font-size: 8px;
  font-weight: 700;
  font-family: var(--en-primary-font);
}
@media screen and (max-width: 768px) {
  .footer-wrap-co-box__en-txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  .footer-wrap-co-box__en-txt {
    font-size: 10px;
  }
}

.footer-wrap-02-boxs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px 130px;
}
@media screen and (max-width: 768px) {
  .footer-wrap-02-boxs {
    flex-direction: row;
    gap: 35px 5vw;
  }
}
.footer-wrap-02-boxs dt {
  display: flex;
  font-size: max(1.7rem, 13px);
  font-weight: 700;
  margin-bottom: 18px;
  white-space: nowrap;
}
@media screen and (max-width: 430px) {
  .footer-wrap-02-boxs dt h3 {
    font-weight: 500;
  }
}

.footer-wrap-02-box-content-lists {
  font-size: max(1.1rem, 10px);
  line-height: 2;
  font-weight: 500;
}

.footer-policy {
  font-size: 9px;
  font-weight: 500;
}

.footer-copy {
  margin-top: 15px;
}

@media not screen and (min-width: 576px) {
  .c-fv {
    padding: 120px 0 0;
    height: inherit;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 106.5px;
  max-width: 1440px;
  width: 100%;
}
@media not screen and (min-width: 992px) {
  .inner {
    padding: 0 5vw;
  }
}

.message {
  padding: 100px 0;
}
@media not screen and (min-width: 576px) {
  .message {
    padding: 60px 0;
  }
}
.message-text {
  font-weight: bold;
  font-size: clamp(14px, 1.11vw, 16px);
}
.message-title {
  text-align: center;
  position: relative;
  z-index: 0;
}
.message-eyecatch {
  margin: 60px auto 53px;
  max-width: 847px;
  width: 100%;
}
.message-body {
  margin: 60px auto 0;
  max-width: 847px;
  width: 100%;
  line-height: 1.6;
}
@media not screen and (min-width: 576px) {
  .message-body {
    margin: 40px auto 0;
  }
}
.message-foot {
  margin-top: 60px;
  padding-right: 40px;
  text-align: right;
}
@media not screen and (min-width: 576px) {
  .message-foot {
    padding-right: 0;
  }
}
.message-foot__sign {
  margin-top: 20px;
  margin-left: auto;
  width: 154px;
}
@media not screen and (min-width: 576px) {
  .message-foot__sign {
    width: 30vw;
  }
}
.message-link {
  margin: 200px 0 0;
  padding-right: 40px;
  text-align: right;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 576px) {
  .message-link {
    padding-right: 0;
  }
}
.message-link:hover, .message-link:focus {
  opacity: 0.7;
  transition: opacity 0.3s;
}
.message-link-body {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 12px;
  font-size: clamp(16px, 1.38vw, 20px);
  border-bottom: 3px solid #ccc;
  position: relative;
}
.message-link-body::after {
  content: url("../../../img/common/icon_blank.svg");
  display: inline-block;
  width: 20px;
  height: 26px;
}