@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #F5F7FB;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #222;
  line-height: 1.8;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.bgText {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 110px;
  font-size: 6.875rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .bgText {
    font-size: 10rem;
  }
}

.bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.375rem;
     -moz-column-gap: 0.375rem;
          column-gap: 0.375rem;
  padding-block: 12px;
  padding-block: 0.75rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  border-top: 1px solid #e4e8ee;
}
@media screen and (min-width: 768px) {
  .bread {
    padding-inline: 1.5625rem;
  }
}

.bread__item {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .bread__item {
    font-size: 0.875rem;
  }
}

.bread__arrow {
  display: block;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-top: 1px solid #222;
  border-top: 0.0625rem solid #222;
  border-right: 1px solid #222;
  border-right: 0.0625rem solid #222;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (min-width: 768px) {
  .bread__arrow {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.commonBtn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
}

.commonBtn--white {
  color: #fff;
}

.commonBtn:hover {
  opacity: 1;
}

.commonBtn span {
  display: inline-block;
  width: 40px;
  width: 2.5rem;
  height: 5px;
  height: 0.3125rem;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .commonBtn span {
    width: 3.75rem;
    height: 0.375rem;
  }
}

.commonBtn--white span {
  border-color: #fff;
}

.commonBtn:hover span {
  -webkit-transform: skewX(45deg) translateX(0.625rem);
          transform: skewX(45deg) translateX(0.625rem);
}

.fixedBtn {
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  z-index: 6;
  mix-blend-mode: difference;
  display: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .fixedBtn {
    display: block;
  }
}

.fixedBtn.fadeout {
  opacity: 0;
  visibility: hidden;
}

.fixedBtn__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fixedBtn__link {
    gap: 0.625rem;
    width: 8.75rem;
    height: 8.75rem;
  }
}

.fixedBtn__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-animation: rotation 20s linear infinite;
          animation: rotation 20s linear infinite;
}

.fixedBtn__arrow {
  width: 26px;
  width: 1.625rem;
  height: 8px;
  height: 0.5rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

.fixedBtn__link span {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fixedBtn__link span {
    font-size: 0.875rem;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.footer {
  background-color: #040E25;
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5.625rem;
    padding-bottom: 3.125rem;
  }
}

.footer__wrap {
  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 (min-width: 768px) {
  .footer__wrap {
    -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;
  }
}

.footer__logo {
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 10rem;
  }
}

.footer__logo img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="10" /><feFuncG type="linear" slope="10" /><feFuncB type="linear" slope="10" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.footer__navWrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer__navWrap {
    margin-top: 0;
  }
}

.footer__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  row-gap: 12px;
  row-gap: 0.75rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.footer__navLink {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}

.footer__bottom {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  border-top: 1px solid rgba(255, 255, 255, .3);
  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 (min-width: 768px) {
  .footer__bottom {
    margin-top: 5.625rem;
    padding-top: 3.75rem;
    -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;
  }
}

.footer__privacy {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__privacy {
    margin-bottom: 0;
  }
}

.footer__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}

.form__item {
  text-decoration: none;
}
.form__item:not(:first-of-type) {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .form__item:not(:first-of-type) {
    margin-top: 3rem;
  }
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.form__required {
  display: inline-block;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  font-weight: 700;
  background-color: #040E25;
}

.form__label label {
  font-size: 16px;
  font-size: 1rem;
}

.form__item > span {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: block;
}

.form__item input[type=text],
.form__item input[type=email],
.form__item input[type=tel],
.form__item textarea {
  width: 100%;
  padding: 12px 12px;
  padding: 0.75rem 0.75rem;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #222;
}
@media screen and (min-width: 768px) {
  .form__item input[type=text],
  .form__item input[type=email],
  .form__item input[type=tel],
  .form__item textarea {
    padding: 0.75rem 1.25rem;
  }
}

.form__item textarea {
  max-width: none;
  max-height: 160px;
  max-height: 10rem;
}

.form__submit {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 4.6875rem;
  }
}

.form__btn {
  display: inline-block;
  width: 100%;
  position: relative;
}

.form__btn input {
  padding: 12px 100px;
  padding: 0.75rem 6.25rem;
  max-width: 400px;
  max-width: 25rem;
  background-color: #040E25;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__btn input {
    padding: 0.9375rem 10rem;
    font-size: 1.125rem;
  }
}

.wpcf7-list-item:has(.form__privacy) {
  margin-left: 0;
}

label:has(.form__privacy) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

.form__privacy {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin: 0;
}

.form__privacy[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 14px;
  width: 0.875rem;
  height: 7px;
  height: 0.4375rem;
  border-bottom: 3px solid #040E25;
  border-bottom: 0.1875rem solid #040E25;
  border-left: 3px solid #040E25;
  border-left: 0.1875rem solid #040E25;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 5px;
  top: 0.3125rem;
  left: 3px;
  left: 0.1875rem;
}

.form__privacy + span {
  line-height: 1;
}

.form__privacy + span > a {
  text-decoration: underline;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 10px;
}

.header {
  width: 100%;
  height: 70px;
  height: 4.375rem;
  position: fixed;
  top: 0;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.625rem;
  }
}

.header.scrolled {
  mix-blend-mode: unset;
  background-color: rgba(4, 14, 37, .75);
}
@media screen and (min-width: 768px) {
  .header.scrolled {
    mix-blend-mode: difference;
    background-color: transparent;
  }
}

.header__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.125rem;
  }
}

.header__logo {
  width: 130px;
  width: 8.125rem;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: min(10rem, 11.428vw);
  }
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__logo img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="10" /><feFuncG type="linear" slope="10" /><feFuncB type="linear" slope="10" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

@media screen and (min-width: 768px) {
  body:not(.home) .header.scrolled {
    mix-blend-mode: unset;
    background-color: rgba(4, 14, 37, .75);
  }
}

body:not(.home) .header__logo img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

body:not(.home) .header.scrolled .header__logo img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="10" /><feFuncG type="linear" slope="10" /><feFuncB type="linear" slope="10" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.header__burger {
  width: 30px;
  width: 1.875rem;
  height: 8px;
  height: 0.5rem;
  position: absolute;
  top: 28px;
  top: 1.75rem;
  right: 20px;
  right: 1.25rem;
  padding: 0;
  z-index: 5;
}

.header__burger-bar {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  margin-inline: auto;
  display: block;
}

.header__burger-bar::before,
.header__burger-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  display: block;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__burger-bar::before {
  top: 0;
}

.header__burger-bar::after {
  bottom: 0;
}

body:not(.home) .header__burger-bar::before,
body:not(.home) .header__burger-bar::after {
  background-color: #222;
}

body:not(.home) .header.scrolled .header__burger-bar::before,
body:not(.home) .header.scrolled .header__burger-bar::after {
  background-color: #fff;
}

.header__burger.open .header__burger-bar::before,
.header__burger.open .header__burger-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  display: block;
  background-color: #fff;
  height: 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__burger.open .header__burger-bar::before {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.header__burger.open .header__burger-bar::after {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.header__spnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: rgba(4, 14, 37, .9);
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header__spnavItem {
  width: 100%;
  border-bottom: 1px solid rgba(228, 232, 238, .5);
}

.header__spnavLink {
  display: inline-block;
  width: inherit;
  height: inherit;
  padding-block: 16px;
  padding-block: 1rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4285714286;
  position: relative;
}

.header__spnav.open {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

.header__pcnavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}

.header__pcnavItem {
  position: relative;
}

.header__pcnavLink {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  display: inline-block;
}

body:not(.home) .header__pcnavLink {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(1);
          filter: invert(1);
}

body:not(.home) .header.scrolled .header__pcnavLink {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(0);
          filter: invert(0);
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 90%;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.lv {
  padding-top: 134px;
  padding-top: 8.375rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e4e8ee;
}
@media screen and (min-width: 768px) {
  .lv {
    padding-top: 11.875rem;
    padding-bottom: 6.25rem;
  }
}

.lv__titleWrap {
  position: relative;
  margin-left: 36px;
  margin-left: 2.25rem;
}
@media screen and (min-width: 768px) {
  .lv__titleWrap {
    margin-left: 2.9375rem;
  }
}

.lv__titleWrap::before {
  content: "";
  display: block;
  width: 80px;
  width: 5rem;
  height: 100px;
  height: 6.25rem;
  background-image: url("../images/common/polygon-title.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: -36px;
  left: -2.25rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .lv__titleWrap::before {
    width: 7.1875rem;
    height: 9.0625rem;
    top: -1.5rem;
    left: -2.9375rem;
  }
}

.lv__title {
  font-size: 56px;
  font-size: 3.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #34425F 0%, #040E25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .lv__title {
    font-size: 5.25rem;
  }
}

.lv__subTitle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #34425F 0%, #040E25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .lv__subTitle {
    font-size: 1.125rem;
  }
}

.sectionTitle__text {
  display: inline-block;
  text-align: left;
  font-size: 54px;
  font-size: 3.375rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sectionTitle__text {
    font-size: 4.5rem;
  }
}

.sectionTitle--white .sectionTitle__text {
  color: #fff;
}

.sectionTitle__text span {
  display: block;
  font-weight: 700;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sectionTitle__text span {
    font-size: 1rem;
  }
}

.sectionTitle__text::before {
  content: "";
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  -webkit-clip-path: polygon(23% 0, 0% 100%, 79% 16%);
          clip-path: polygon(23% 0, 0% 100%, 79% 16%);
  background-color: #7686a6;
  position: absolute;
  top: -17px;
  top: -1.0625rem;
  left: -16px;
  left: -1rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .sectionTitle__text::before {
    width: 4.9375rem;
    height: 4.9375rem;
    top: -1.125rem;
    left: -1.4375rem;
  }
}

.about {
  padding-top: 80px;
  padding-top: 5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 8.125rem;
  }
}

.about__table {
  width: 100%;
}

.about__tableHead {
  width: 100%;
  background-color: rgba(52, 66, 95, .1);
}
@media screen and (min-width: 768px) {
  .about__tableHead {
    width: 22%;
    min-width: 12.5rem;
  }
}

.about__tableData {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__tableData {
    width: 78%;
  }
}

.about__tableHead,
.about__tableData {
  padding-block: 18px;
  padding-block: 1.125rem;
  padding-inline: 36px;
  padding-inline: 2.25rem;
  text-align: left;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 768px) {
  .about__tableHead,
  .about__tableData {
    padding-block: 1.5rem;
    padding-inline: 3rem;
    border-top: 1px solid #ced4de;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .about__tableRow:last-child .about__tableHead,
  .about__tableRow:last-child .about__tableData {
    border-bottom: 1px solid #ced4de;
  }
}

.about__image {
  margin-top: 80px;
  margin-top: 5rem;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__image {
    margin-top: 8.125rem;
    aspect-ratio: 1440/400;
  }
}

.about__image img {
  height: 100%;
  scale: 1.4;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.contact__inner {
  max-width: 800px;
  max-width: 50rem;
}

.members {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .members {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.members__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .members__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.members__item + .members__item {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .members__item + .members__item {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .members__nameWrap {
    width: 50%;
  }
}

.members__position {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}

.members__position::before {
  content: "";
  display: block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #7686a6;
  position: absolute;
  top: 50%;
  left: 0px;
  left: 0rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.members__name {
  margin-top: 2px;
  margin-top: 0.125rem;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .members__name {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .members__history {
    width: 50%;
    margin-top: 1.5625rem;
  }
}

.members__history li {
  padding-left: 1em;
  text-indent: -1em;
}

.members__history li + li {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.privacy {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.privacy__content h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .privacy__content h3 {
    font-size: 1.25rem;
    margin-top: 2.25rem;
  }
}

.privacy__content p {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .privacy__content p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.privacy__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .privacy__btn {
    margin-top: 5rem;
  }
}

.privacy__btn button {
  color: #222;
}

.service {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.service__item {
  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 (min-width: 768px) {
  .service__item {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.125rem;
  }
}

.service__item + .service__item {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.service__itemImage {
  aspect-ratio: 1/1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__itemImage {
    width: 45%;
    aspect-ratio: 450/600;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: 0;
  }
}

.service__itemImage img {
  height: 100%;
  scale: 1.25;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .service__itemImage img {
    scale: 1.1;
  }
}

.service__itemBody {
  display: contents;
}
@media screen and (min-width: 768px) {
  .service__itemBody {
    display: block;
    width: 50%;
  }
}

.service__itemTitle {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .service__itemTitle {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    font-size: 4rem;
  }
}

.service__itemSubTitle {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  padding-left: 16px;
  padding-left: 1rem;
  position: relative;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .service__itemSubTitle {
    margin-top: 0.625rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 1.25rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.service__itemSubTitle::before {
  content: "";
  display: block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #7686a6;
  position: absolute;
  top: 12px;
  top: 0.75rem;
  left: 0px;
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .service__itemSubTitle::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 1rem;
  }
}

.service__itemDesc {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media screen and (min-width: 768px) {
  .service__itemDesc {
    margin-top: 3rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.topAbout {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background-image: url("../images/top/top-about.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topAbout {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.topAbout::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 14, 37, .8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.topAbout__wrap {
  position: relative;
  padding: 60px 30px;
  padding: 3.75rem 1.875rem;
  background-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  backdrop-filter: blur(0.625rem);
}
@media screen and (min-width: 768px) {
  .topAbout__wrap {
    padding: 5.625rem 6.25rem;
  }
}

.topAbout__title {
  text-align: center;
}

.topAbout__textWrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .topAbout__textWrap {
    margin-top: 3.75rem;
  }
}

.topAbout__textTitle {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topAbout__textTitle {
    font-size: 1.25rem;
  }
}

.topAbout__textDesc {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .topAbout__textDesc {
    margin-top: 1.875rem;
  }
}

.topAbout__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topAbout__btn {
    margin-top: 5rem;
  }
}

.topAbout__bgText {
  position: absolute;
  bottom: 0;
  left: -14px;
  left: -0.875rem;
  color: rgba(255, 255, 255, .4);
  mix-blend-mode: soft-light;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-filter: blur(0.125rem);
          filter: blur(0.125rem);
}
@media screen and (min-width: 768px) {
  .topAbout__bgText {
    left: -1.25rem;
    bottom: auto;
    bottom: initial;
    top: 0;
  }
}

.topMv {
  position: relative;
  z-index: 0;
  min-height: clamp(60vh, 100svh, 100vh);
  overflow: hidden;
}

.topMv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  -webkit-filter: none;
          filter: none;
}

.topMv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(4, 14, 37, .55);
  z-index: 1;
  pointer-events: none;
}

.topMv::after {
  content: "";
  display: block;
  background-image: url("../images/top/mv-light.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 3%;
  left: -100px;
  left: -6.25rem;
  z-index: 2;
  width: 70vw;
  min-width: 760px;
  min-width: 47.5rem;
  height: 55vw;
  min-height: 605px;
  min-height: 37.8125rem;
  mix-blend-mode: screen;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .topMv::after {
    top: 0;
    left: 0;
    min-width: 58.125rem;
    min-height: 46.25rem;
  }
}

.topMv__copy {
  position: absolute;
  top: 50%;
  left: 3vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 3;
}

.topMv__copyEn {
  font-size: 60px;
  font-size: 3.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .topMv__copyEn {
    font-size: 6rem;
    letter-spacing: 0.05em;
  }
}

.topMv__copyJp {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .topMv__copyJp {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }
}

.topNews {
  background-color: #F5F7FB;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topNews {
    padding-top: 8.125rem;
    padding-bottom: 16.75rem;
  }
}

.topNews__title .sectionTitle__text::before {
  background-color: #d0daee;
}

.topNews__list {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .topNews__list {
    margin-top: 3.75rem;
  }
}

.topNews__item {
  border-top: 1px solid #e4e8ee;
}

.topNews__item:last-child {
  border-bottom: 1px solid #e4e8ee;
}

.topNews__itemHeader {
  padding: 16px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  row-gap: 12px;
  row-gap: 0.75rem;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topNews__itemHeader {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.topNews__date {
  font-size: 14px;
  font-size: 0.875rem;
}

.topNews__category {
  padding: 3px 10px 0;
  padding: 0.1875rem 0.625rem 0;
  border: 1px solid #040E25;
  font-size: 11px;
  font-size: 0.6875rem;
}

.topNews__itemTitle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.topNews__itemDesc {
  padding: 0px 18px 18px;
  padding: 0rem 1.125rem 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .topNews__itemDesc {
    padding: 0rem 1.5rem 1.5rem;
  }
}

.topNews__itemDesc > * + * {
  margin-top: 1em;
}

.topNews__itemDesc p a {
  text-decoration: underline;
  color: #34425F;
}

.topNews__itemHeader::after {
  content: "";
  display: block;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  border-right: 2px solid #34425F;
  border-right: 0.125rem solid #34425F;
  border-bottom: 2px solid #34425F;
  border-bottom: 0.125rem solid #34425F;
  position: absolute;
  top: 50%;
  right: 18px;
  right: 1.125rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px) {
  .topNews__itemHeader::after {
    width: 0.75rem;
    height: 0.75rem;
    right: 1.5rem;
  }
}

.topNews__itemHeader[aria-expanded=true]::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.topNews__bgText {
  position: absolute;
  left: 0;
  bottom: -14px;
  bottom: -0.875rem;
  color: #222;
  mix-blend-mode: overlay;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-filter: blur(0.125rem);
          filter: blur(0.125rem);
}
@media screen and (min-width: 768px) {
  .topNews__bgText {
    bottom: -1.25rem;
    right: 0;
    left: auto;
    left: initial;
  }
}

.topService {
  background-color: #F5F7FB;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topService {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.topService__title .sectionTitle__text::before {
  background-color: #d0daee;
}

.topService__container {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .topService__container {
    margin-top: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
  }
}

.topService__textWrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topService__textWrap {
    width: calc(50% - 6.25rem);
  }
}

.topService__textTitle {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .topService__textTitle {
    font-size: 1.25rem;
  }
}

.topService__textDesc {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
}

.topService__image {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 5/4;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .topService__image {
    width: 50vw;
    margin-inline: 0;
    margin-right: calc(50% - 50vw);
  }
}

.topService__image img {
  height: 100%;
  scale: 1.25;
  -o-object-fit: cover;
     object-fit: cover;
}

.topService__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topService__btn {
    margin-top: 5rem;
  }
}

.topService__bgText {
  position: absolute;
  top: 0;
  right: -14px;
  right: -0.875rem;
  color: #222;
  mix-blend-mode: overlay;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-filter: blur(0.125rem);
          filter: blur(0.125rem);
}
@media screen and (min-width: 768px) {
  .topService__bgText {
    right: -1.25rem;
  }
}
/*# sourceMappingURL=styles.css.map */
