/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --text: #121212;
  --main: #58a6db;
  --sub: #212a47;
  --gray: #eeeeee;
  --leading-trim: calc((1em - 1lh) / 2);
  --external: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20,11a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V6A1,1,0,0,1,6,5h6a1,1,0,0,0,0-2H6A3,3,0,0,0,3,6V18a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A1,1,0,0,0,20,11Z"/><path d="M16,5h1.58l-6.29,6.28a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L19,6.42V8a1,1,0,0,0,1,1h0a1,1,0,0,0,1-1V4a1,1,0,0,0-1-1L16,3h0a1,1,0,0,0,0,2Z"/></svg>');
}

/*------------------------------*/
#preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease, scale 0.6s ease;
}
#preloader::after {
  content: "";
  position: relative;
  z-index: 100000;
  isolation: isolate;
  display: block;
  width: 6rem;
  aspect-ratio: 1;
  background: url("../images/load.gif") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  #preloader::after {
    width: 3rem;
  }
}
#preloader.view {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body#isTop #preloader.view {
  scale: 1.3;
  transition: opacity 0.5s ease, visibility 0.5s ease, scale 0.6s ease;
}
body#isTop #preloader::after {
  display: none;
}
body#isTop #preloader #loading-video {
  width: 90px;
  display: block;
  padding-bottom: 40px;
}
body#isTop #preloader #loading-video source {
  width: 100%;
  display: block;
}

/*------------------------------*/
.inner {
  padding-inline: 2rem;
  max-width: calc(1100px + 4rem);
  margin-inline: auto;
}
.inner.narrow {
  max-width: calc(900px + 4rem);
}

.readText {
  font-kerning: normal;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 2;
  text-align: justify;
  font-size: max(1.6rem, 14px);
}
@media screen and (max-width: 767px) {
  .readText {
    text-align: left;
  }
}
.readText.s {
  font-size: max(1.4rem, 12px);
}
.readText.trim {
  margin-block: calc((1em - 1lh) / 2);
}
.readText.alignCenter {
  text-align: center;
}

/*------------------------------*/
.hoverText {
  transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .hoverText:hover span.is-hover, .hoverText:hover span.is-main {
    transform: translateY(-100%);
  }
  .hoverText:hover.blockBtn {
    background-color: #fff;
  }
  .hoverText:hover.blockBtn span.is-hover, .hoverText:hover.blockBtn span.is-main {
    color: currentColor;
  }
  .hoverText:hover.blockBtn.line::before {
    scale: 1 1;
    background-color: currentColor;
    transition: scale 0.2s ease 0.3s;
  }
  .hoverText:hover.blockBtn.line::after {
    scale: 0 1;
    background-color: currentColor;
  }
}
.hoverText_Box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 1.2em;
}
.hoverText_Box .is-main, .hoverText_Box .is-hover {
  transition: 0.4s ease;
  line-height: 1.3;
}
.hoverText.blockBtn {
  border: currentColor 1px solid;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: currentColor;
}
.hoverText.blockBtn span.is-main, .hoverText.blockBtn span.is-hover {
  color: #fff;
}
.hoverText.blockBtn.line::before, .hoverText.blockBtn.line::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 10rem;
  height: 1px;
  top: calc(50% - 0.5px);
  left: -5rem;
}
@media screen and (max-width: 767px) {
  .hoverText.blockBtn.line::before, .hoverText.blockBtn.line::after {
    width: 8rem;
    left: -4rem;
  }
}
.hoverText.blockBtn.line::before {
  transform-origin: left;
  scale: 0 1;
  transition: scale 0.2s ease, background-color 0.2s;
}
.hoverText.blockBtn.line::after {
  transform-origin: right;
  transition: scale 0.2s ease, background-color 0.2s;
}
.hoverText.textBtn {
  position: relative;
  display: flex;
  align-items: center;
}
.hoverText.textBtn .is-main, .hoverText.textBtn .is-hover {
  color: var(--text);
  letter-spacing: 0.02em;
}
.hoverText.external::after {
  content: "";
  -webkit-mask-image: var(--external);
          mask-image: var(--external);
  margin-left: 0.2rem;
  margin-bottom: 0.15em;
  inline-size: 1em;
  display: inline-block;
  aspect-ratio: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: currentColor;
  transition: 0.2s;
}

.panelBtn img {
  transition: scale 0.6s ease, opacity 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .panelBtn:hover img {
    scale: 1.02 !important;
    opacity: 1 !important;
  }
  .panelBtn:hover .blockBtn {
    background-color: #fff;
  }
  .panelBtn:hover .blockBtn span.is-hover, .panelBtn:hover .blockBtn span.is-main {
    color: currentColor;
  }
  .panelBtn:hover .blockBtn.line::before {
    scale: 1 1;
    background-color: currentColor;
    transition: scale 0.2s ease 0.3s;
  }
  .panelBtn:hover .blockBtn.line::after {
    scale: 0 1;
    background-color: currentColor;
  }
}

/*------------------------------*/
span[data-inview] {
  display: inline-block;
}

[data-inview=slide-up] {
  translate: 0 1lh;
}

[data-inview=fade-up] {
  opacity: 0;
  translate: 0 1rem;
}

[data-inview=clip-in] {
  --clip:100%;
  -webkit-clip-path: inset(0 var(--clip) 0 0);
          clip-path: inset(0 var(--clip) 0 0);
}
[data-inview=clip-in].toTop {
  -webkit-clip-path: inset(var(--clip) 0 0 0);
          clip-path: inset(var(--clip) 0 0 0);
}

[data-inview=image-in] {
  overflow: hidden;
}
[data-inview=image-in] img {
  opacity: 0;
  transform-origin: center;
  scale: 1.1;
}

[data-inview=pop-in] {
  opacity: 0;
  scale: 0.7;
}

[data-inview=elastic-in] {
  opacity: 0;
  scale: 0.3;
}

/*------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.header_inner {
  padding-left: 2rem;
  background-color: transparent;
  height: 8rem;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_inner {
    height: 7rem;
  }
}
.header_logo {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover {
    opacity: 0.6;
  }
}
.header_logo h1 {
  width: 3.2rem;
}
@media screen and (max-width: 767px) {
  .header_logo h1 {
    width: 2.8rem;
  }
}
.header_logo p.ja {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .header_logo p.ja {
    font-weight: 700;
  }
}
.header_logo p.en {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .header_logo p.en {
    font-size: 1rem;
  }
}
.header_logo p.en span {
  display: inline-block;
}
.header_logo p.en span::first-letter {
  color: var(--main);
  font-weight: 700;
}
.header_wrap {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_wrap .blockBtn {
  color: var(--main);
  width: 10rem;
  font-weight: 700;
  font-family: "Lato";
  letter-spacing: 0.1em;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header_wrap .blockBtn {
    width: 7rem;
    font-size: 1.35rem;
  }
}
.header #menuBtn {
  height: 100%;
  width: 10rem;
  position: relative;
  background-color: var(--sub);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header #menuBtn {
    width: 7rem;
  }
}
.header #menuBtn .bar {
  width: 42.5%;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  border-radius: 1px;
  margin-bottom: -1px;
  background-color: #fff;
}
.header #menuBtn .bar.top {
  top: 34%;
  transition: all 0.3s;
}
.header #menuBtn .bar.mid {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.header #menuBtn .bar.bottom {
  bottom: 34%;
  transition: all 0.3s;
}
.header #menuBtn.active .bar.top {
  transform: translate(-50%, -0.5px) rotate(45deg);
  transition: all 0.3s;
  top: 50%;
}
.header #menuBtn.active .bar.mid {
  opacity: 0;
  transition: all 0.2s;
}
.header #menuBtn.active .bar.bottom {
  transform: translate(-50%, 0) rotate(-45deg);
  transition: all 0.3s;
  bottom: 50%;
}

/*------------------------------*/
.footer, .menu {
  padding-top: 4rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.footer_wrap, .menu_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer_wrap .btn-wrap, .menu_wrap .btn-wrap {
  display: flex;
  align-items: center;
}
.footer_logo, .menu_logo {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .footer_logo:hover, .menu_logo:hover {
    opacity: 0.6;
  }
}
.footer_logo > p, .menu_logo > p {
  width: 4rem;
}
.footer_logo p.ja, .menu_logo p.ja {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.footer_logo p.en, .menu_logo p.en {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  line-height: 1.45;
}
.footer_logo p.en span, .menu_logo p.en span {
  display: inline-block;
}
.footer_logo p.en span::first-letter, .menu_logo p.en span::first-letter {
  color: var(--main);
  font-weight: 700;
}
.footer_corporate, .menu_corporate {
  margin-right: 4rem;
}
.footer_corporate .textBtn, .menu_corporate .textBtn {
  color: var(--main);
}
.footer_corporate .textBtn .is-main, .footer_corporate .textBtn .is-hover, .menu_corporate .textBtn .is-main, .menu_corporate .textBtn .is-hover {
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
}
.footer_entry .blockBtn, .menu_entry .blockBtn {
  width: 16rem;
  height: 6rem;
  color: var(--main);
  font-family: "Lato";
  font-weight: 700;
}
.footer_grid, .menu_grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: flex-end;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .footer_grid, .menu_grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}
.footer_column, .menu_column {
  padding-block: 2.5rem;
  padding-inline: 2.5rem 5rem;
  border-left: 1px solid #c4cbd2;
}
@media screen and (max-width: 767px) {
  .footer_column, .menu_column {
    border-bottom: 1px solid #c4cbd2;
    border-left: none;
  }
}
.footer_column:first-child, .menu_column:first-child {
  border-left: none;
}
.footer_column:last-child, .menu_column:last-child {
  padding-right: 0;
}
.footer_column-link, .menu_column-link {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer_column-link, .menu_column-link {
    font-size: 1.8rem;
  }
}
.footer_column-link + .footer_column-link, .footer_column-link + .menu_column-link, .menu_column-link + .footer_column-link, .menu_column-link + .menu_column-link {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer_column-link + .footer_column-link, .footer_column-link + .menu_column-link, .menu_column-link + .footer_column-link, .menu_column-link + .menu_column-link {
    margin-top: 3rem;
  }
}
.footer_column-link::before, .menu_column-link::before {
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background-color: var(--main);
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .footer_column-link::before, .menu_column-link::before {
    height: 2px;
    width: 5px;
  }
}
.footer_column-link .hoverText .is-main, .footer_column-link .hoverText .is-hover, .menu_column-link .hoverText .is-main, .menu_column-link .hoverText .is-hover {
  color: var(--text);
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer_column-link .hoverText .is-main, .footer_column-link .hoverText .is-hover, .menu_column-link .hoverText .is-main, .menu_column-link .hoverText .is-hover {
    font-size: 1.8rem;
  }
}
.footer_copyright, .menu_copyright {
  margin-top: 5rem;
  padding-block: 1.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_copyright, .menu_copyright {
    padding-block: 1.2rem;
    margin-top: 3rem;
  }
}
.footer_copyright p, .menu_copyright p {
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer_copyright p, .menu_copyright p {
    font-size: 1.2rem;
  }
}

/*------------------------------*/
.footer {
  border-top: 1px solid #c4cbd2;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
  .footer .footer_copyright {
    margin-top: 0;
  }
  .footer .footer_copyright p {
    text-align: center;
  }
  .footer .footer_wrap, .footer .footer_grid {
    display: none;
  }
}

/*------------------------------*/
.menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  transition: all 0.4s ease;
  pointer-events: none;
  opacity: 0;
  background-color: transparent;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .menu {
    overflow-y: auto;
  }
}
.menu .container {
  background-color: #fff;
  height: 100lvh;
  padding-block: 0 6rem;
  transition: 0.7s ease -0.1s, opacity 0.4s;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .menu .container {
    padding-block: 7rem 8rem;
    height: auto;
    display: block;
  }
}
.menu .inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .menu .inner {
    width: 100%;
  }
}
.menu.open {
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  pointer-events: auto;
  opacity: 1;
}
.menu.open .container {
  -webkit-animation: menuIn 0.6s ease;
          animation: menuIn 0.6s ease;
}
@media screen and (max-width: 767px) {
  .menu.open .container {
    -webkit-animation: menuInSp 0.6s ease;
            animation: menuInSp 0.6s ease;
  }
}
.menu_grid {
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .menu_grid {
    grid-template-columns: 1fr;
  }
}
.menu_column {
  padding-block: 3rem 3rem;
  border-left: none;
}
@media screen and (max-width: 767px) {
  .menu_column {
    padding-block: 3rem 4rem;
    padding-inline: 0;
  }
}
.menu_column-head {
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.menu_column-head::first-letter {
  color: var(--main);
}
.menu_column-link {
  font-size: 2rem;
}
.menu_column-link .textBtn .is-main, .menu_column-link .textBtn .is-hover {
  font-size: 1.8rem;
  font-weight: 500;
}
.menu_column-link::before {
  width: 6px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .menu_column-link::before {
    height: 2px;
    width: 5px;
  }
}
.menu_corporate {
  margin-top: 3rem;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .menu_corporate {
    margin-top: 4rem;
  }
}

@-webkit-keyframes menuIn {
  0% {
    scale: 0;
    opacity: 0;
  }
  25% {
    scale: 1;
  }
  50% {
    scale: 1.05;
    opacity: 1;
  }
  90%, 100% {
    scale: 1;
  }
}

@keyframes menuIn {
  0% {
    scale: 0;
    opacity: 0;
  }
  25% {
    scale: 1;
  }
  50% {
    scale: 1.05;
    opacity: 1;
  }
  90%, 100% {
    scale: 1;
  }
}
@-webkit-keyframes menuInSp {
  0% {
    scale: 0;
    opacity: 0;
  }
  25% {
    scale: 1;
  }
  50% {
    scale: 1.02;
    opacity: 1;
  }
  90%, 100% {
    scale: 1;
  }
}
@keyframes menuInSp {
  0% {
    scale: 0;
    opacity: 0;
  }
  25% {
    scale: 1;
  }
  50% {
    scale: 1.02;
    opacity: 1;
  }
  90%, 100% {
    scale: 1;
  }
}
/*------------------------------*/
.subpageMv {
  padding-block: 16rem 10rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .subpageMv {
    padding-block: 11rem 6rem;
  }
}
.subpageMv p.en {
  font-size: 18rem;
  font-weight: 500;
  font-family: "Oswald";
  margin-bottom: 2rem;
}
.subpageMv p.en::first-letter {
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .subpageMv p.en {
    font-size: 8rem;
  }
}
.subpageMv h2.ja {
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
.subpageMv h2.ja::before {
  content: "/";
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .subpageMv h2.ja::before {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .subpageMv h2.ja {
    font-size: 1.6rem;
  }
}
.subpageMv p.readText {
  margin-top: 6rem;
}
.subpageMv .wrap {
  position: relative;
  z-index: 1;
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap {
    padding-inline: 2rem;
  }
}
.subpageMv .wrap.row {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap.row {
    flex-direction: column;
    align-items: flex-start;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 2.5rem;
  }
}
.subpageMv .wrap.row p.en {
  line-height: 0.9;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap.row p.en {
    line-height: 0.8;
  }
}
.subpageMv .wrap.center {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap.center {
    padding-inline: 0;
  }
}
.subpageMv .wrap.center h2.ja::after {
  content: "/";
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap.center h2.ja::after {
    font-size: 1.8rem;
  }
}
.subpageMv .wrap.center p.en {
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .subpageMv .wrap.center p.en {
    font-size: 7.5rem;
  }
}
.subpageMv .bg {
  position: absolute;
  z-index: 0;
  width: 68rem;
  right: -12rem;
  top: -24rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .subpageMv .bg {
    width: 80%;
    top: -10rem;
    right: -10rem;
  }
}
.subpageMv + .lead .wrap {
  border-radius: 1.6rem;
  background-color: #fff;
  box-shadow: 0 0 8px -5px #9e9e9e;
  padding: 3.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .subpageMv + .lead .wrap {
    padding: 3rem 2rem;
  }
}

/*------------------------------*/
main.bgGray {
  background-color: var(--gray);
  position: relative;
  overflow: hidden;
}
main.bgGray section {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.bg[data-inview] img {
  -webkit-animation: bgRotation 60s linear infinite;
          animation: bgRotation 60s linear infinite;
}

@-webkit-keyframes bgRotation {
  to {
    rotate: 360deg;
  }
}

@keyframes bgRotation {
  to {
    rotate: 360deg;
  }
}
/*# sourceMappingURL=common.css.map */