@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

p{
	line-height:1.5;
	margin:0px 0 20px;
}

b{
	font-weight: 600;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

:root {
  --rate-vw: 0.0694444444vw;
  --rate-fz: 0.0694444444vw;
  --cap: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.2544529262vw;
    --rate-fz: 0.2544529262vw;
    --cap: 10;
  }
}

/*------------------------------
common
------------------------------*/
body {
  color: #0a141f;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: clamp(0px, 1070 * var(--rate-vw), 1070px * var(--cap));
  max-width: 1070px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, 350 * var(--rate-vw), 350px * var(--cap));
  }
}

/* セクションタイトル
------------------------------*/
.c-section-title {
  color: #e4ecef;
}

.c-section-title__en {
  display: block;
}
.c-section-title__en img {
  height: clamp(0px, 64 * var(--rate-vw), 64px * var(--cap));
  width: auto;
  mix-blend-mode: hard-light;
}
@media (max-width: 767px) {
  .c-section-title__en img {
    height: clamp(0px, 35 * var(--rate-vw), 35px * var(--cap));
  }
}

.c-section-title__en--02 {
  background: #fff;
}
.c-section-title__ja {
  display: block;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 500;
  line-height: 1.8333333333;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    line-height: 2;
  }
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  padding: clamp(0px, 265 * var(--rate-vw), 265px * var(--cap)) 0 clamp(0px, 340 * var(--rate-vw), 340px * var(--cap));
  background: url(../img/page-filter.webp) no-repeat center top/cover, url(../img/bg.webp) no-repeat center bottom/cover;
}
@media (max-width: 767px) {
  .c-page-header {
    padding: clamp(0px, 140 * var(--rate-vw), 140px * var(--cap)) 0;
    background: url(../img/page-filter_sp.webp) no-repeat center top/cover, url(../img/bg.webp) no-repeat center top/cover;
  }
}

.c-page-title {
  font-size: clamp(0px, 56 * var(--rate-fz), 56px * var(--cap));
  font-weight: 500;
  line-height: 1.1428571429;
  color: #e4ecef;
  text-align: center;
}
@media (max-width: 767px) {
  .c-page-title {
    font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
  }
}

/* テキスト色
------------------------------*/
.u-text-color {
  color: #0a141f;
}

/* ボタン
------------------------------*/
.c-btn {
  display: inline-block;
  width: 100%;
  font-size: clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
  font-weight: 600;
  padding: 1em 0;
  text-align: center;
  color: #f5f5f5;
  border: 1px solid #fff;
}

/*------------------------------
cta
------------------------------*/
.cta {
  padding: clamp(0px, 460 * var(--rate-vw), 460px * var(--cap)) 0 clamp(0px, 240 * var(--rate-vw), 240px * var(--cap));
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  background: url(../img/dec04.webp) no-repeat center center/100%;
  aspect-ratio: 1053/965;
  transform: translate(-129%, -33%);
  width: 36.3%;
  max-width: 522px;
  left: 50%;
  top: 0;
  mix-blend-mode: hard-light;
}
@media (max-width: 767px) {
  .cta {
    padding: clamp(0px, 220 * var(--rate-vw), 220px * var(--cap)) 0 clamp(0px, 54 * var(--rate-vw), 54px * var(--cap));
  }
  .cta::before {
    background: url(../img/dec06.webp) no-repeat center center/100%;
    aspect-ratio: 416/483;
    transform: translate(0%, -3%);
    width: 51.3%;
    max-width: unset;
    left: 0%;
    top: 0;
    mix-blend-mode: hard-light;
  }
}

.cta__content {
  width: calc(790 / 1070 * 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cta__content {
    width: 100%;
    flex-direction: column;
    gap: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap)) 0;
    align-items: flex-start;
  }
}

.cta__body {
  color: #e4ecef;
}
@media (max-width: 767px) {
  .cta__body {
    padding-left: 3%;
  }
}

.cta__heading {
  font-size: clamp(0px, 31 * var(--rate-fz), 31px * var(--cap));
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .cta__heading {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    letter-spacing: -0.02em;
  }
}

.cta__info {
  font-size: clamp(0px, 21 * var(--rate-fz), 21px * var(--cap));
  font-weight: 400;
  line-height: 1.4;
  margin-top: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .cta__info {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    margin-top: 1.6em;
  }
}

.cta__button {
  width: clamp(0px, 160 * var(--rate-vw), 160px * var(--cap));
}
.cta__button a {
  font-size: clamp(0px, 21 * var(--rate-fz), 21px * var(--cap));
  padding: 0.6em 0;
}
@media (max-width: 767px) {
  .cta__button {
    width: 100%;
  }
  .cta__button a {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    padding: 0.8em 0;
  }
}

/*------------------------------
office
------------------------------*/
.office {
  background: #fff;
  padding: clamp(0px, 96 * var(--rate-vw), 96px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .office {
    padding: clamp(0px, 64 * var(--rate-vw), 64px * var(--cap)) 0;
  }
}

.office__list {
  width: calc(900 / 1070 * 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0 clamp(0px, 175 * var(--rate-vw), 175px * var(--cap));
}
@media (max-width: 767px) {
  .office__list {
    width: 100%;
    flex-direction: column;
    gap: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap)) 0;
  }
}

.office__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .office__item {
    width: 100%;
  }
}

.office__name {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .office__name {
    line-height: 1.4;
  }
}

.office__info {
  margin-top: clamp(0px, 8 * var(--rate-vw), 8px * var(--cap));
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.4;
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

/*------------------------------
bg
------------------------------*/
.c-bg01 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), url(../img/bg.webp) no-repeat center center/100%;
}

.c-clip01 {
  -webkit-clip-path: polygon(0 0, 100% clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 100%, 0 calc(100% - clamp(0px, 300 * var(--rate-vw), 300px * var(--cap))));
          clip-path: polygon(0 0, 100% clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 100%, 0 calc(100% - clamp(0px, 300 * var(--rate-vw), 300px * var(--cap))));
}
.c-clip01 > * {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-clip01 {
    -webkit-clip-path: polygon(0 0, 100% clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 100%, 0 calc(100% - clamp(0px, 82 * var(--rate-vw), 82px * var(--cap))));
            clip-path: polygon(0 0, 100% clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 100%, 0 calc(100% - clamp(0px, 82 * var(--rate-vw), 82px * var(--cap))));
  }
}

.c-clip02 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - clamp(0px, 300 * var(--rate-vw), 300px * var(--cap))));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - clamp(0px, 300 * var(--rate-vw), 300px * var(--cap))));
}
.c-clip02 > * {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-clip02 {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - clamp(0px, 82 * var(--rate-vw), 82px * var(--cap))));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - clamp(0px, 82 * var(--rate-vw), 82px * var(--cap))));
  }
}

.c-clip03 { /* 上辺　右下がり */
  -webkit-clip-path: polygon(0 0, 100% clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 100%, 0 100%);
}
.c-clip03 > * {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-clip03 {
    -webkit-clip-path: polygon(0 0, 100% clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 100%, 0 100%);
  }
}

.c-clip04 { /* 上辺　右あがり */
  -webkit-clip-path: polygon(0 clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 clamp(0px, 300 * var(--rate-vw), 300px * var(--cap)), 100% 0, 100% 100%, 0 100%);
}
.c-clip04 > * {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-clip04 {
    -webkit-clip-path: polygon(0 clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 clamp(0px, 82 * var(--rate-vw), 82px * var(--cap)), 100% 0, 100% 100%, 0 100%);
  }
}

.c-bg-wh {
  background: #fff;
}

.c-bg02 {
  background: url(../img/bg02.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .c-bg02 {
    background: url(../img/bg07.webp) no-repeat center center/cover;
  }
}

.c-bg03 {
  background: url(../img/bg06.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .c-bg03 {
    background: url(../img/bg08.webp) no-repeat center center/cover;
  }
}

.c-bg04 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../img/bg.webp) no-repeat center center/100%;
}

.c-bg05 {
  background: url(../img/bg03.webp) repeat center center/auto;
}
/*------------------------------
u-
------------------------------*/
.u-mt10 {
  margin-top: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
}
/*# sourceMappingURL=common.css.map */