/**
* 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;
}

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-body {
}

.l-container {
  overflow-x: hidden;
}

.l-body.is-business {
  overflow-x: hidden;
}

.is-business .l-container {
  overflow-x: visible;
}

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

.l-main {
  padding-top: 60px;
}
@media screen and (min-width: 960px) {
  .l-main {
    padding-top: 85px;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-second {
  margin: min(12vw, 80px) 0 0;
}
@media screen and (min-width: 960px) {
  .l-second {
    margin: min(7.2vw, 126px) 0 0;
  }
}

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

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

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  color: var(--color_header);
  background: var(--bg_header);
  z-index: 3;
  background: var(--color_bg);
}
@media screen and (min-width: 960px) {
  .l-header {
    padding: 20px;
    border-bottom: 1px solid var(--color_border);
  }
}
.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-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: 140px;
  z-index: 5;
}
@media screen and (min-width: 960px) {
  .p-header__logo {
    width: 210px;
    top: 20px;
    left: 50px;
  }
}
.p-header__logo a {
  display: block;
}
.p-header__global {
  width: 100%;
  overflow: auto;
}
@media screen and (min-width: 960px) {
  .p-header__global {
    height: auto;
  }
}
.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(9.8vw, 40px);
  text-align: center;
  font-weight: 700;
  color: var(--color_main);
  background: var(--color_bg);
  z-index: 4;
  transform: translateX(-100%);
  transition-duration: 0.3s;
}
@media screen and (min-width: 960px) {
  .p-header__nav {
    position: static;
    justify-content: center;
    align-items: center;
    height: auto;
    width: calc(100% - 620px);
    height: 44px;
    margin: 0 auto;
    padding: 14px 0;
    background: none;
    color: #fff;
    font-size: min(1.8vw, 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: 14vw 5vw 0;
}
@media screen and (min-width: 960px) {
  .p-header__nav .p-header__contact {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-header__nav .p-header__contact a i {
    height: 31px;
  }
}
.p-header__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(4.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;
    align-items: flex-start;
    flex-direction: row;
    gap: 6px min(2vw, 28px);
    margin: 0 auto;
    padding: 0 0 0 min(6vw, 120px);
  }
  .p-header__list:before {
    width: 100%;
    height: 14px;
    background: #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-header__list:after {
    width: 100%;
    height: 10px;
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}
.p-header__list li {
  padding: 2px 4px;
  line-height: 1.2;
  /*overflow: hidden;*/
  color: #000;
}
@media screen and (min-width: 960px) {
  .p-header__list li {
    height: 17px;
  }
}
@media screen and (min-width: 960px) {
  .p-header__list li:nth-child(4) {
    padding: 2px 12px;
  }
}
@media screen and (min-width: 960px) {
  .p-header__list li:nth-child(5) {
    padding: 2px 8px;
  }
}
.p-header__list li a {
  display: block;
  position: relative;
  text-align: left;
  overflow: visible;
}
@media screen and (min-width: 960px) {
  .p-header__list li a {
    transition-duration: 0.3s;
  }
}
.p-header__list li a span.dummy {
  display: none;
  position: absolute;
  top: 200%;
  white-space: nowrap;
  /*left: 50%;
  transform: translate(-50%, 120%);*/
}
@media screen and (min-width: 960px) {
  .p-header__list li a span.dummy {
    display: block;
  }
}
.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 b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition-duration: 0.3s;
  transform: translate(0, 0);
}
@media screen and (min-width: 960px) {
  .p-header__list li a b {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-header__list li a:hover b {
    transform: translate(0, -100%);
  }
}
@media screen and (min-width: 960px) {
  .p-header__list li a:hover span.dummy {
    top: 100%;
  }
}
.p-header__list li a span {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.p-header__ham {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 12px;
  right: 15px;
  width: 100px;
  padding: 6px 16px;
  cursor: pointer;
  border: 1px solid var(--color_accent);
  border-radius: 40px;
  z-index: 4;
}
@media screen and (min-width: 960px) {
  .p-header__ham {
    display: none;
  }
}
.p-header__ham label {
  position: relative;
  top: 0;
  font-size: 13px;
  color: var(--color_accent);
}
.p-header__hamBorder {
  position: relative;
  width: 52px;
}
.p-header__hamBorder span {
  position: absolute;
  display: inline-block;
  right: 0;
  height: 1px;
  background: var(--color_hamburger);
  transition-duration: 0.3s;
  width: 3px;
  height: 3px;
  border-radius: 3px;
}
.p-header__hamBorder span:first-child {
  top: 3px;
}
.p-header__hamBorder span:nth-child(2) {
  top: 9px;
}
.p-header__hamBorder span:nth-child(3) {
  bottom: 3px;
  right: 0;
}
.p-header__ham.is-active .p-header__hamBorder span:first-child {
  width: 100%;
  top: 9px;
  transform: rotate(32deg);
  border-radius: 0;
}
.p-header__ham.is-active .p-header__hamBorder span:nth-child(2) {
  opacity: 0;
}
.p-header__ham.is-active .p-header__hamBorder span:nth-child(3) {
  width: 100%;
  bottom: 10px;
  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 20px !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;
}

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

.l-header.is-complete .p-header__logo a {
  animation: header_up 0.8s ease-in-out 0.2s forwards;
}

.l-header.is-active .p-header__hamBorder span {
  height: 2px;
}

.l-header .p-header__contact .p-header__icon {
  top: -1px;
}

.l-header .p-header__contact a span {
  padding: 0 min(14.8vw, 60px) 0 0;
}

@media only screen and (min-width: 960px) {
  .l-header .p-header__contact a span {
    padding: 0 min(10.8vw, 40px) 0 0;
  }
}
@media only screen and (min-width: 960px) {
  .l-header .p-header__contact i {
    height: 31px;
  }
}
.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-reverse;
  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%;
  }
}
.p-footer__sns {
  width: 20px;
  margin-top: 20px;
}
.p-footer__sp {
  display: flex;
}
@media screen and (min-width: 960px) {
  .p-footer__sp {
    width: 60%;
    border-right: 1px solid var(--color_bg);
  }
}
@media screen and (min-width: 960px) {
  .p-footer__sp .p-footer__column {
    width: 40%;
  }
}
@media screen and (min-width: 960px) {
  .p-footer__sp .p-footer__column:last-child {
    width: 60%;
    justify-content: center;
    align-items: center;
  }
}
.p-footer__sp .p-footer__column:first-child {
  border-right: 1px solid #8594C0;
}
@media screen and (min-width: 960px) {
  .p-footer__sp .p-footer__column:first-child {
    border-right: 1px solid #8594C0;
  }
}
.p-footer__column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: min(12vw, 120px) min(5.3vw, 40px);
  border-bottom: 1px solid #8594C0;
}
@media screen and (min-width: 960px) {
  .p-footer__column {
    align-items: center;
    justify-content: center;
    width: 40%;
    padding: 80px min(5.3vw, 40px);
    border-right: 1px solid #8594C0;
  }
}
.p-footer__column:last-child {
  border-right: 0;
  justify-content: flex-start;
  padding: min(12vw, 120px) min(5.3vw, 40px);
}
@media screen and (min-width: 960px) {
  .p-footer__column:last-child {
    justify-content: flex-start;
    padding: 80px min(4.3vw, 120px);
  }
}
.p-footer__ttl {
  font-size: min(5.4vw, 32px);
  line-height: 1.1;
  font-family: var(--font_family--en);
}
@media screen and (min-width: 960px) {
  .p-footer__ttl {
    font-size: min(3.4vw, 48px);
  }
}
.p-footer__desc {
  margin-top: min(6.2vw, 40px);
  font-size: min(2.4vw, 12px);
  line-height: 1.4;
  font-family: var(--font_family--en);
}
@media screen and (min-width: 960px) {
  .p-footer__desc {
    margin-top: min(3.8vw, 50px);
    font-size: min(2.4vw, 12px);
  }
}
.p-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 960px) {
  .p-footer__list {
    gap: min(0.8vw,17px);
  }
}
.p-footer__item {
  font-size: min(5.4vw, 24px);
  line-height: 1.4;
  font-family: var(--font_family--en);
}
@media screen and (min-width: 960px) {
  .p-footer__item {
    height: 23px;
    font-size: min(4.4vw, 24px);
    overflow: hidden;
  }
}
.p-footer__item a {
  padding-right: 60px;
  transition-duration: 0.3s;
  line-height: 1;
}
.p-footer__item a:hover {
  opacity: 1;
}
.p-footer__item a b .dummy {
  display: none;
}
@media screen and (min-width: 960px) {
  .p-footer__item a b .dummy {
    display: block;
  }
}
.p-footer__item a b {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition-duration: 0.3s;
  transform: translate(0, 0);
}
@media screen and (min-width: 960px) {
  .p-footer__item a b {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.p-footer__item a:hover b {
  transform: translate(0, -50%);
}
.p-footer__btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: min(5.3vw, 40px);
  text-align: center;
  background: var(--color_bg);
}
@media screen and (min-width: 960px) {
  .p-footer__btm {
    flex-direction: row;
    padding: 40px min(5.3vw, 40px);
  }
}
.p-footer__btmList {
  display: flex;
  width: 100%;
  gap: min(7.8vw, 40px);
}
@media screen and (min-width: 960px) {
  .p-footer__btmList {
    width: 100%;
    gap: 2.8vw;
  }
}
.p-footer__btmList li:first-child {
  width: 32%;
}
@media screen and (min-width: 960px) {
  .p-footer__btmList li:first-child {
    width: 170px;
  }
}
.p-footer__btmList li:nth-child(2) {
  width: 28%;
}
@media screen and (min-width: 960px) {
  .p-footer__btmList li:nth-child(2) {
    width: 140px;
  }
}
.p-footer__btmList li:nth-child(3) {
  width: 20%;
}
@media screen and (min-width: 960px) {
  .p-footer__btmList li:nth-child(3) {
    width: 109px;
  }
}
.p-footer__copy {
  display: block;
  width: 100%;
  margin-top: min(2.8vw, 20px);
  color: var(--color_main);
  font-size: min(3.2vw, 14px);
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 960px) {
  .p-footer__copy {
    width: auto;
    white-space: nowrap;
    margin-top: 28px;
    font-size: min(1.2vw, 14px);
    text-align: center;
  }
}
.p-footer__logo {
  margin-bottom: 8.4vw;
  padding: 0;
  max-width: 232px;
  gap: 6px;
}
@media screen and (min-width: 960px) {
  .p-footer__logo {
    margin-bottom: min(3.8vw, 38px);
    padding: 0;
  }
}
.p-footer__logoYear {
  display: block;
  margin-top: min(10px, 1.2vw);
  font-size: min(2.6vw, 12px);
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .p-footer__logoYear {
    font-size: min(3.4vw, 14px);
  }
}
.p-footer__logoTxt {
  font-weight: 400;
}
.p-footer__address {
  font-size: min(2.4vw, 12px);
}
@media screen and (min-width: 960px) {
  .p-footer__address {
    font-size: min(1.1vw, 16px);
  }
}
.p-footer__link {
  display: inline-block;
  margin-top: 20px;
  font-size: min(3.6vw, 16px) !important;
  font-family: var(--font_family--en);
}
@media screen and (min-width: 960px) {
  .p-footer__link {
    font-size: min(1.2vw, 16px) !important;
  }
}
.p-footer__catch {
  margin-bottom: min(3.8vw, 38px);
  font-size: min(3.2vw, 16px);
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .p-footer__catch {
    margin-bottom: min(2.8vw, 20px);
    font-size: min(1.4vw, 20px);
  }
}

@media only screen and (min-width: 1200px) {
  .p-footer__desc {
    margin-top: min(6.4vw, 64px);
    font-size: min(3vw, 14px);
  }
}
@media only screen and (min-width: 1400px) {
  .p-footer__desc {
    margin-top: min(3.8vw, 50px);
    font-size: min(3.6vw, 16px);
  }
}
.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-txtHover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 0.8;
}

.c-txtHover span {
  display: inline-block;
}

.c-txtHover span.dummy {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0, 120%);
  white-space: nowrap;
}

@media only screen and (min-width: 960px) {
  .c-txtHover span.dummy {
    display: block;
  }
}
@media only screen and (min-width: 960px) {
  .c-txtHover:hover span {
    transform: translate(0, -100%);
    transition-duration: 0.3s;
  }
}
.c-txtHover:hover span.dummy {
  transform: translate(0, 0);
}

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

.c-btn a {
  display: inline-flex;
  padding: min(4.4vw, 20px) min(5.4vw, 20px);
  border-radius: 4px;
  overflow: hidden;
  transition-duration: 0.6s;
}

@media only screen and (min-width: 960px) {
  .c-btn a {
    padding: 19px 0 19px 12px;
  }
}
.c-btn a span {
  padding: 0 min(10.8vw, 40px) 0 0;
  border-right: 1px solid var(--color_bg);
  font-family: var(--font_family--en);
  font-size: min(3.6vw, 16px);
  font-weight: 500;
}

@media only screen and (min-width: 960px) {
  .c-btn a span {
    padding: 0 40px 0 20px;
  }
}
.c-btn a i {
  display: inline-block;
  width: 12px;
  height: 22px;
  padding: 0 2.8vw 0 2.8vw;
  margin: 0 0 0 min(4.4vw, 20px);
}

@media only screen and (min-width: 960px) {
  .c-btn a i {
    height: 25px;
  }
}
@media only screen and (min-width: 960px) {
  .c-btn a i {
    padding: 0 24px;
    margin: 0 7px;
  }
}
.c-btn.c-btn__border a {
  color: var(--color_accent);
  border: 1px solid var(--color_accent);
}

.c-btn.c-btn__border span {
  border-right: 1px solid var(--color_accent);
}

.c-btn.c-btn__border i {
  background: url(../img/common/icon-arrow-blue.svg) no-repeat;
  background-size: 12px;
  background-position: 50% 50%;
}

@media only screen and (min-width: 960px) {
  .c-btn.c-btn__border i {
    background-position: 50% 50%;
    background: url(../img/common/icon-arrow-blue.svg) no-repeat;
    background-size: 15px;
    background-position: 50% 50%;
  }
}
.c-btn.c-btn__border a:hover {
  color: var(--color_bg);
  background: var(--color_accent);
}

.c-btn.c-btn__border a:hover span {
  border-right: 1px solid var(--color_bg);
}

.c-btn.c-btn__border a:hover i {
  background: url(../img/common/icon-arrow-white.svg) no-repeat;
  background-size: 12px;
  background-position: 50% 50%;
}

@media only screen and (min-width: 960px) {
  .c-btn.c-btn__border a:hover i {
    background-size: 15px;
    background-position: 50% 50%;
  }
}
.c-btn.c-btn__grad a {
  position: relative;
  color: #fff;
}

.c-btn.c-btn__grad a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3156C3 0%, #6185EE 50.5%, #3156C3 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.6s;
  /*background:linear-gradient(#ff3300,#ff9900);*/
}

.c-btn.c-btn__grad a:hover:before {
  opacity: 1;
}

.c-btn.c-btn__grad a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #25408F 0%, #4B6AC5 50.5%, #25408F 100%);
  z-index: -2;
  transition: all 0.6s;
  opacity: 1;
}

.c-btn.c-btn__grad a:hover:after {
  opacity: 1;
}

.c-btn.c-btn__grad i {
  background: url(../img/common/icon-arrow-white.svg) no-repeat;
  background-size: 12px;
  background-position: 50% 50%;
}

@media only screen and (min-width: 960px) {
  .c-btn.c-btn__grad i {
    background-position: 50% 50%;
  }
}
.c-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: min(12vw, 80px);
  width: 100%;
  margin-bottom: min(13.3vw, 80px);
}

@media only screen and (min-width: 960px) {
  .c-ttl {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: min(8.3vw, 80px);
  }
}
.c-ttl__txt {
  font-size: min(12vw, 84px);
  font-family: var(--font_family--en);
  line-height: 0.85;
  font-weight: 600;
  overflow: hidden;
}

@media only screen and (min-width: 960px) {
  .c-ttl__txt {
    font-size: min(8vw, 84px);
  }
}
.c-ttl__txt span {
  display: inline-block;
  overflow: hidden;
}

.c-ttl__left small {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: min(3.4vw, 16px);
}

.c-ttl__desc {
  max-width: 100%;
  font-size: min(3.6vw, 16px);
  line-height: 2;
}

@media screen and (min-width: 960px) {
  .c-ttl__desc {
    max-width: 378px;
  }
}

.c-ttl__blue .c-ttl__txt {
  color: var(--color_accent);
}

.c-pageTtl {
  max-width: 1570px;
  margin: 0 auto min(4.8vw, 60px);
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-pageTtl {
    padding: 0;
  }
}
.c-pageTtl__s {
  max-width: 1240px;
}
.c-pageTtl__m {
  max-width: 1340px;
}
.c-pageTtl__main {
  margin: 0 auto;
  font-family: var(--font_family--en);
  line-height: 1.2;
  font-weight: 600;
  color: var(--color_accent);
  font-size: min(12.4vw, 85px);
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .c-pageTtl__main {
    font-size: min(8vw, 126px);
  }
}
.c-pageTtl__main--s {
  font-size: min(7.4vw, 54px);
}
@media screen and (min-width: 960px) {
  .c-pageTtl__main--s {
    font-size: min(8vw, 126px);
  }
}
.c-pageTtl__main span {
  display: inline-block;
  min-width: 1.6vw;
  transform: translate(0px, 100%);
}
@media screen and (min-width: 960px) {
  .c-pageTtl__main span {
    min-width: 18px;
  }
}
.c-pageTtl__small {
  display: block;
  margin-top: min(2vw, 20px);
  font-size: min(3.6vw, 16px);
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .c-pageTtl__small {
    margin-top: min(1.2vw, 10px);
    font-size: min(2.2vw, 18px);
  }
}

.c-enTtl {
  margin-bottom: min(4.8vw, 40px);
  font-size: min(3.2vw, 18px);
  font-family: var(--font_family--en);
  color: var(--color_accent);
}
@media screen and (min-width: 960px) {
  .c-enTtl {
    margin-bottom: min(1.8vw, 18px);
    font-size: min(2.4vw, 18px);
  }
}

.c-contTtl {
  font-size: min(7.8vw, 54px);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .c-contTtl {
    font-size: min(3.8vw, 54px);
    line-height: 1.35;
  }
}
.c-contTtl__s {
  font-size: min(5.4vw, 36px);
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .c-contTtl__s {
    font-size: min(3vw, 36px);
  }
}

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

.c-catLink {
  display: flex;
  justify-content: flex-start;
  max-width: 1570px;
  margin: min(8vw, 80px) auto min(10vw, 112px);
  padding: 0 0 0 min(5.3vw, 40px);
  overflow: auto;
}
@media screen and (min-width: 960px) {
  .c-catLink {
    position: relative;
    top: -100px;
    justify-content: flex-end;
    padding: 0 min(8.3vw, 80px) 0;
    margin: 0 auto;
  }
}
.c-catLink__list {
  display: flex;
  gap: min(2vw, 20px);
}
.c-catLink__list p, .c-catLink__list a {
  padding: 10px 20px;
  color: #25408F;
  border: 1px solid #25408F;
  border-radius: 4px;
  font-size: min(3.2vw, 14px);
  cursor: pointer;
  transition-duration: 0.3s;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .c-catLink__list p, .c-catLink__list a {
    padding: 6px 28px;
  }
}
.c-catLink__list p.is-current, .c-catLink__list a.is-current {
  color: #fff;
  background: #25408F;
}
.c-catLink__list p:hover, .c-catLink__list a:hover {
  color: #fff;
  background: #25408F;
}

.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(3.2vw, 32px);
    margin: min(10vw, 112px) auto;
  }
}
.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: #25408F;
  border: 1px solid #25408F;
  border-radius: min(16vw, 40px);
  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-radius: 60px;
  }
}
.c-pagenav__list li span {
  pointer-events: none;
}
.c-pagenav__list li a {
  color: #25408F;
  background: none;
  cursor: pointer;
  transition-duration: 0.3s;
}
.c-pagenav__list li a:hover {
  color: #fff;
  background: #25408F;
}

.c-blogTtl {
  max-width: 1570px;
  margin: 0 auto min(10vw, 112px);
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-blogTtl {
    padding: 0;
  }
}
.c-blogTtl__main {
  font-size: min(4.4vw, 36px);
  line-height: 1.6;
}
.c-blogTtl__time {
  display: inline-block;
  margin-bottom: min(2.8vw, 28px);
  font-size: min(3.4vw, 14px);
  font-family: var(--font_family--en);
  color: #25408F;
}
@media screen and (min-width: 960px) {
  .c-blogTtl__time {
    margin-bottom: min(1.6vw, 12px);
    font-size: 3;
  }
}
.c-blogTtl__cat {
  display: inline-block;
  margin-top: min(4.4vw, 40px);
  font-size: min(3vw, 12px);
  padding: 4px 12px;
  color: #25408F;
  border: 1px solid #25408F;
  border-radius: 4px;
}
@media screen and (min-width: 960px) {
  .c-blogTtl__cat {
    margin-top: min(3.6vw, 32px);
    font-size: min(3.2vw, 14px);
    padding: 4px 20px;
  }
}

.c-backBtn {
  display: flex;
  justify-content: flex-start;
  max-width: 1560px;
  margin: min(8.3vw, 52px) auto;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-backBtn {
    padding: 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);
}
