/**
* Default
**/
html {
  font-size: min(4.16vw, 16px);
}

body {
  position: relative;
  width: 100%;
  background-color: var(--color_bg);
  color: var(--color_main);
  line-height: var(--line_height);
  letter-spacing: var(--letter_spacing);
  font-family: var(--font_family);
}
body.is-active {
  overflow: hidden;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  body {
    line-height: 1.6;
  }
}

a {
  transition-duration: 0.3s;
}

a:hover {
  opacity: 0.9;
}


svg,
img {
  max-width: 100%;
}

/**
* Situation
**/
.s-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .s-pc {
    display: block;
  }
}

.s-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .s-sp {
    display: none;
  }
}

.s-pc__inline {
  display: none;
}
@media screen and (min-width: 960px) {
  .s-pc__inline {
    display: inline;
  }
}

.s-sp__inline {
  display: inline;
}
@media screen and (min-width: 960px) {
  .s-sp__inline {
    display: none;
  }
}

/**
* Layout
**/
.l-content {
  padding: 0 min(5.3vw, 40px);
}
@media screen and (min-width: 960px) {
  .l-content {
    padding: 0 min(8.3vw, 80px);
  }
}

@media only screen and (min-width: 960px) {
  .l-second {
    min-height: calc(100vh - 298px);
  }
}

.l-splash {
  position: fixed;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  z-index: 999;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-second {
  margin: min(8vw, 60px) 0 0;
}
@media screen and (min-width: 960px) {
  .l-second {
    margin: min(28vw, 140px) 0 0;;
  }
}

.l-blue {
  padding: min(12.8vw, 112px) 0;
  background: #F8FAFF;
}
@media screen and (min-width: 960px) {
  .l-blue {
    padding: min(10vw, 112px) 0;
  }
}

.l-white {
  padding: min(12.8vw, 112px) 0;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .l-white {
    padding: min(10vw, 112px) 0;
  }
}

.l-grey {
  padding: min(12.8vw, 112px) 0;
  background: #FBFBFB;
}
@media screen and (min-width: 960px) {
  .l-grey {
    padding: min(10vw, 112px) 0;
  }
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 70px;
  padding: 0;
  color: var(--color_header);
  background: var(--bg_header);
  z-index: 3;
  /*background: var(--color_bg);*/
  background: rgba(255,255,255,0.7);
}

@media screen and (min-width: 960px) {
  .l-header {
    width: 100%;
    top: 0;
    height: auto;
    padding: 28px 40px;
  }
}

@media screen and (min-width: 960px) {
  .l-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 208px);
    height: 1px;
    background: var(--color_main);
    transition-duration: 0.3s;
  }
  .l-header.is-fixed:after {
    width: 100%;
  }
}

.l-header.is-active .p-header__logo svg path {
  fill: var(--color_main);
}

.l-footer {
  color: var(--color_footer);
  background: var(--bg_footer);
}

/**
* Project
**/

.p-splash {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 317px;
  transform: translate(-50%,-50%);
}

.p-splash__logo {
  max-width: 70%;
  margin: 0 auto min(2.8vw,20px);
}

@media screen and (min-width: 960px) {
  .p-splash__logo {
    max-width: 200px;
    margin: 0 auto 40px;
  }
}

.p-splash__txt {
  font-size: min(2.6vw,14px);
  text-align: center;
}

@media screen and (min-width: 960px) {
  .p-splash__txt {
    font-size: min(1.2vw,16px);
  }
}

.p-splash__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(5.8vw,32px);
  gap: min(3.2vw,28px);
}

@media screen and (min-width: 960px) {
  .p-splash__dot {
    margin-top: 44px;
    gap: min(1.2vw,20px);
  }
}

.p-splash__dot b {
  display: block;
  width: min(2.6vw,28px);
  height: min(2.6vw,28px);
  border-radius: min(2.6vw,28px);
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .p-splash__dot b {
  width: min(1.2vw,24px);
  height: min(1.2vw,24px);
  border-radius: min(1.2vw,24px);
  }
}

.p-splash__dot b.is-blue {
  background: #2B4FAD;
}

.p-splash__dot b.is-green {
  background: #3DBF86;
}

.p-splash__dot b.is-red {
  background: #CC453C;
}

.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  height: 100%;
  font-family: var(--font_family--en);
}

.p-header__logo {
  position: absolute;
  top: 17px;
  left: 20px;
  width: 65px;
  z-index: 5;
  transition-duration: 0.3s;
}

@media screen and (min-width: 960px) {
  .p-header__logo {
    width: min(10vw,125px);
    top: 28px;
    left: 40px;
  }
}

.l-header.is-fixed .p-header__logo {
  width: 50px;
}

@media screen and (min-width: 960px) {
  .l-header.is-fixed .p-header__logo {
    top: 22px;
    width: min(7vw,90px);
  }
}

.p-header__logo a {
  display: block;
}

.p-header__logo img {
  width: 100%;
}

.p-header__global {
  width: 100%;
  overflow: auto;
}

@media screen and (min-width: 960px) {
  .p-header__global {
    height: auto;
    overflow: inherit;
  }
}

.p-header__nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.8vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  font-size: min(6.8vw, 32px);
  text-align: center;
  font-weight: 700;
  color: var(--color_main);
  background: #F2F2F2;
  z-index: 4;
  transform: translateX(-100%);
  transition-duration: 0.3s;
}

@media screen and (min-width: 960px) {
  .p-header__nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    width: calc(100% - 249px);
    height: 44px;
    margin-left: auto;
    gap: min(3.8vw, 60px);;
    padding: 14px 0;
    background: none;
    font-size: min(1.2vw, 16px);
    transform: translateX(0%);
    transition-duration: 0s;
  }
}

.p-header__nav:after {
  position: absolute;
  top: 27vw;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-nav.svg) no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media screen and (min-width: 960px) {
  .p-header__nav:after {
    display: none;
  }
}

.p-header__nav.is-active {
  transform: translateX(0);
}

.p-header__nav .p-header__contact {
  position: static;
  margin: 12vw 0 0;
  padding: 0 5.8vw;
  width: 100%;
  text-align: right;
}

@media screen and (min-width: 960px) {
  .p-header__nav .p-header__contact {
    width: 181px;
    margin: 0;
    padding: 0;
  }
}

.p-header__nav .p-header__contact a {
  padding: min(3.2vw, 20px) min(5.4vw, 28px) min(2.3vw, 17px);
}

@media screen and (min-width: 960px) {
  .p-header__nav .p-header__contact a {
    justify-content: center;
    width: 181px;
    padding: 14px 0px 11px;
  }
}

.p-header__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(8.2vw, 40px);
  width: 100%;
  padding: 0 5.8vw;
}

@media screen and (min-width: 960px) {
  .p-header__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: row;
    gap: 6px min(3.8vw, 60px);
    margin: 0 auto;
    padding: 0;
  }
}

.p-header__list li {
  padding: 0;
  line-height: 1.2;
  font-weight: 500;
  overflow: hidden;
}

.p-header__list li a {
  display: block;
  position: relative;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .p-header__list li a {
    transition-duration: 0.3s;
  }
}

.p-header__list li a:after {
  display: none;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .p-header__list li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition-duration: 0.3s;
    transform: scale(0);
  }
}

.p-header__list li a:hover:after {
  transform: scale(1);
}

.p-header__list li a span {
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.p-header__ham {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: 12px;
  right: 15px;
  width: 44px;
  height: 44px;
  padding: 6px 0;
  cursor: pointer;
  background: var(--color_main);
  border-radius: 40px;
  z-index: 4;
}

@media screen and (min-width: 960px) {
  .p-header__ham {
    display: none;
  }
}

.p-header__ham.is-active {
  background: var(--color_bg);
}

.p-header__ham label {
  font-size: 13px;
  color: var(--color_accent);
}

.p-header__hamBorder {
  position: relative;
  width: 35%;
  top: 0;
}

.p-header__hamBorder span {
  position: absolute;
  display: inline-block;
  right: 0;
  height: 1px;
  background: var(--color_hamburger);
  transition-duration: 0.3s;
  width: 100%;
  height: 1px;
  border-radius: 20px;
}

.p-header__ham.is-active .p-header__hamBorder span {
  background: var(--color_main);
}

.p-header__hamBorder span:first-child {
  top: 2px;
}

.p-header__hamBorder span:nth-child(2) {
  bottom: 2px;
}

.p-header__ham.is-active .p-header__hamBorder span:first-child {
  width: 100%;
  top: -1px;
  transform: rotate(32deg);
  border-radius: 0;
}

.p-header__ham.is-active .p-header__hamBorder span:nth-child(2) {
  width: 100%;
  bottom: 0px;
  transform: rotate(-32deg);
  border-radius: 0;
}

.p-header__contact {
  position: absolute;
  top: 15px;
  right: 64px;
}

@media screen and (min-width: 960px) {
  .p-header__contact {
    top: 15px;
    right: 50px;
  }
}

/*.p-header__contact a:hover .p-header__icon img {
  transform: rotate(-130deg) translate(40%, 200%);
  opacity: 0;
}

.p-header__contact a:hover .p-header__icon:after {
  transition-duration: 0.2s;
  transform: rotate(-130deg) translate(0, 0);
  opacity: 1;
}

@media screen and (min-width: 960px) {
  .p-header__contact a {
    padding: 12px 0 12px 12px !important;
  }
}*/

.p-header__icon {
  position: relative;
  overflow: hidden;
}

.p-header__icon img {
  display: block;
  position: relative;
  width: 36%;
  margin-left: 8px;
  transition-duration: 0.2s;
  transform: rotate(-130deg);
}

.p-header__icon:after {
  content: "";
  position: absolute;
  top: 5%;
  left: 8px;
  width: 37%;
  height: 100%;
  background: url(../img/common/icon-arrow.svg) no-repeat;
  background-size: 100%;
  transform: rotate(-130deg) translate(-40%, -200%);
  opacity: 1;
}

.p-footer {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font_family--en);
  color: var(--color_footer);
  background: var(--bg_footer);
}

@media screen and (min-width: 960px) {
  .p-footer {
    padding: 0;
    border-top: 1px solid #333;
  }
}

.p-footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .p-footer__nav {
    flex-direction: row;
    gap: min(9.6vw, 32px) 0;
    width: 100%;
    flex-wrap: inherit;
  }
}

.p-footer__column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: min(11vw, 100px) min(5.8vw, 40px) min(8.6vw, 80px);
}

@media screen and (min-width: 960px) {
  .p-footer__column {
    display: block;
    width: 45%;
    padding: 32px min(12vw, 80px);
  }
  .p-footer__column:first-child {
    padding: 32px 0 32px min(12vw, 80px);
  }
}

@media screen and (min-width: 960px) {
  .p-footer__box {
    display: flex;
    align-items: center;
    gap: min(4vw,80px);
  }
}

.p-footer__column:last-child {
  flex-direction: column;
  padding: 0 min(5.8vw, 40px) min(10vw, 100px);
}

@media screen and (min-width: 960px) {
  .p-footer__column:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    width: 70%;
    gap: min(2vw,40px);
    padding: 32px min(12vw, 80px);
  }
}

.p-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-footer__item {
  display: none;
  font-size: min(3.8vw, 14px);
  line-height: 1.4;
  font-family: var(--font_family--en);
}

@media screen and (min-width: 960px) {
  .p-footer__item {
    display: block;
    font-size: min(1vw, 14px);
  }
}

.p-footer__item a {
  transition-duration: 0.3s;
  line-height: 1;
}

.p-footer__item a:hover {
  opacity: 0.8;
}

.p-footer__copy {
  display: block;
  width: 100%;
  margin-top: min(8vw, 60px);
  color: var(--color_bg);
  font-size: min(3.2vw, 14px);
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .p-footer__copy {
    width: auto;
    white-space: nowrap;
    margin-top: 0;
    margin-left: min(2.8vw,36px);
    font-size: min(3.4vw, 14px);
    text-align: center;
  }
}

.p-footer__logo {
  margin-bottom: 8.4vw;
  padding: 0;
  max-width: 80px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .p-footer__logo {
    max-width: 120px;
    margin: 0;
    padding: 0;
  }
}

.p-footer__logo img {
  width: 100%;
}

.p-footer__address {
  margin-top: min(8vw,32px);
  font-size: min(3.6vw, 14px);
  text-align: center;
}

@media screen and (min-width: 960px) {
  .p-footer__address {
    margin-top: 0;
    text-align: left;
    font-size: min(1.2vw, 14px);
    line-height: 1.7;
  }
}

@media screen and (min-width: 960px) {
  .p-footer__contact {
    width: min(16vw,181px);
    margin: 0;
    padding: 0;
  }
}

.p-footer__contact a {
  padding: min(3.8vw, 20px) min(5.4vw, 20px) min(3vw, 14px)  !important;
}

@media screen and (min-width: 960px) {
  .p-footer__contact a {
    justify-content: center;
    width: 100%;
    padding: 15px 20px 11px !important;
  }
}

.c-viewmore {
  font-family: var(--font_family--en);
  font-size: min(3vw, 12px);
}

@media only screen and (min-width: 960px) {
  .c-viewmore {
    font-size: min(3.6vw, 16px);
  }
}

.c-viewmore i {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background: url(../img/common/icon-arrow-white.svg) no-repeat;
  background-size: 100%;
  background-position: 50% 68%;
  transition-duration: 0.4s;
}

@media only screen and (min-width: 960px) {
  .c-viewmore i {
    width: 12px;
    height: 12px;
  }
}

.c-btn {
  font-size: min(2.8vw, 16px);
  border-radius: 4px;
}

.c-btn a {
  display: inline-flex;
  padding: min(2.8vw, 20px) min(5.4vw, 28px) min(2.3vw, 17px);
  border-radius: 40px;
  overflow: hidden;
  transition-duration: 0.6s;
  color: var(--color_bg);
  background: var(--color_main);
  border: 1px solid var(--color_main);
  transition-duration: 0.3s;
}

@media only screen and (min-width: 960px) {
  .c-btn a {
    padding: 10px 32px;
  }
}

.c-btn a:hover {
  color: var(--color_main);
  background: var(--color_bg);
}

.c-btn a span {
  font-size: min(3.6vw, 16px);
  font-weight: 500;
}

@media only screen and (min-width: 960px) {
  .c-btn a span {
    padding: 0;
    font-size: min(1.2vw, 16px);
  }
}

.c-btn a:hover  svg path {
  fill: var(--color_main);
}

.c-btn a i {
  display: inline-flex;
  align-items: center;
  width: min(2.8vw, 12px);
  height: min(4.4vw, 22px);
  padding: 0;
  margin: 1px 0 0 min(2.8vw, 16px);
  transition-duration: 0.3s;
}

@media only screen and (min-width: 960px) {
  .c-btn a i {
    padding: 0;
    width: min(1.2vw, 12px);
    height: min(1.8vw, 22px);
  }
}

.c-btn a:hover i {
  transform: translate(4px,-1px);
}

.c-btn a i path {
  fill: #fff;
}

.c-btn__white a {
  color: var(--color_main);
  background: var(--color_bg);
}

.c-btn__white a:hover {
  color: var(--color_bg);
  background: var(--color_main);
  border: 1px solid var(--color_bg);
}

.c-btn__white a svg path {
  fill: var(--color_main);
}

.c-btn__white a:hover  svg path {
  fill: var(--color_bg);
}

.c-btn__border a {
  color: var(--color_main);
  background: inherit;
  border: 1px solid var(--color_main);
}

.c-btn__border a svg path {
  fill: var(--color_main);
}

.c-pageTtl {
  margin: 0 auto min(12vw, 80px);
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .c-pageTtl {
    margin: 0 auto min(8vw, 60px);
    padding: 0;
  }
}

.c-pageTtl__small {
  display: block;
  margin-bottom: min(4vw,28px);
  font-size: min(3.4vw,14px);
}

@media screen and (min-width: 960px) {
  .c-pageTtl__small {
    margin-bottom: min(2.8vw,18px);
  }
}

.c-pageTtl__main {
  font-size: min(10.8vw,48px);
  font-weight: 500;
  font-family: var(--font_family--en)
}

@media screen and (min-width: 960px) {
  .c-pageTtl__main {
    font-size: min(10.8vw,80px);
    line-height: 1.2;
  }
}

.c-desc {
  font-size: min(3.6vw, 16px);
}

@media screen and (min-width: 960px) {
  .c-desc {
    font-size: min(3.6vw, 16px);
  }
}

.c-contTtl {
  display: flex;
  flex-direction: column;
  gap: min(4vw,40px);
  text-align: left;
}

@media screen and (min-width: 960px) {
  .c-contTtl {
    gap: min(2vw,12px);
  }
}

.c-contTtl__small {
  display: block;
  margin-bottom: min(4.2vw,28px);
  font-size: min(3.4vw,14px);
}

@media screen and (min-width: 960px) {
  .c-contTtl__small {
    margin-bottom: min(2vw,18px);
    font-size: min(1vw,16px);
  }
}

.c-contTtl__inner {
  display: flex;
  flex-direction: column;
  gap: min(4vw,40px);
}

@media screen and (min-width: 960px) {
  .c-contTtl__inner {
    display: flex;
    flex-direction: column;
    /*gap: min(2vw,12px);*/
    gap: 0;
  }
}

.c-contTtl__main {
  font-size: min(11.8vw,44px);
  font-family: var(--font_family--en);
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .c-contTtl__main {
    font-size: min(4.8vw,80px);
    line-height: 1;
  }
}

.c-pagenav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(2.8vw, 20px);
  margin: min(10vw, 112px) auto;
}

@media screen and (min-width: 960px) {
  .c-pagenav__list {
    gap: min(2vw, 20px);
    margin: min(4.8vw, 60px) auto min(5.8vw, 80px);

  }
}

.c-pagenav__list li {
  display: flex;
  align-items: center;
  justify-self: center;
}

.c-pagenav__list li span, .c-pagenav__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(16vw, 40px);
  height: min(16vw, 40px);
  font-size: min(3.6vw, 16px);
  color: #fff;
  background: var(--color_main);
  border: 1px solid var(--color_main);
  border-radius: min(0.8vw, 5px);
  font-family: var(--font_family--en);
}

@media screen and (min-width: 960px) {
  .c-pagenav__list li span, .c-pagenav__list li a {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color_main);
    border-radius: 6px;
  }
}

.c-pagenav__list li span {
  pointer-events: none;
}

.c-pagenav__list li a {
  color: var(--color_main);
  background: none;
  cursor: pointer;
  transition-duration: 0.3s;
}

.c-pagenav__list li a:hover {
  color: #fff;
  background: var(--color_main);
}

.c-backBtn {
  display: flex;
  justify-content: flex-start;
  max-width: 1570px;
  margin: min(8.3vw, 52px) auto;
  padding: 0 min(5.3vw, 40px);
}

@media screen and (min-width: 960px) {
  .c-backBtn {
    padding: 0 min(8.3vw, 80px) 0;
  }
}

.c-backBtn a {
  display: inline-flex;
  align-items: center;
  gap: min(1.2vw, 12px);
  color: #25408F;
}
.c-backBtn a i {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background: url(../img/common/icon-arrow-blue.svg) no-repeat;
  background-size: 100%;
  transform: rotate(180deg);
}

.c-flows {
  position: relative;
  padding: min(2.8vw,28px) 0;
  overflow: hidden;
  white-space: nowrap;
  line-height: 2;
}

.c-flows__inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: min(2.8vw,40px);
  line-height: 2;
}

.c-flows__left .c-flows__inner {
  animation: marquee 28s linear infinite reverse;
}

.c-flows .swiper-wrapper {
  transition-timing-function: linear;
}

.c-flows__item {
  color: #e9e9e9;
  font-size: min(15vw,80px);
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--font_family--en);
  white-space: nowrap;
}

@media screen and (min-width: 960px) {
  .c-flows__item {
    font-size: min(7vw,120px);
    line-height: 1;
  }
}

.c-flows__left .c-flows__item {
  font-size: min(20vw,80px);
}

@media screen and (min-width: 960px) {
  .c-flows__left .c-flows__item {
    font-size: min(8.8vw,134px);
  }
}

.c-flows__white .c-flows__item {
  color: var(--color_bg);
}

@media screen and (min-width: 960px) {
  .c-flows__white .c-flows__item {
    color: #e9e9e9;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}