/**
* Default
**/

/*html {
  font-size: 62.5%;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 960px) {
  html {
    font-size: 100%;
  }
}*/

html {
  font-size: min(4.16vw, 16px);
  -webkit-text-size-adjust: 100%;
}

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);
  /*animation-name: fadeInAnime;
    animation-fill-mode:forwards;
    animation-duration:0.8s;
    animation-iteration-count:1;
    animation-timing-function:ease;
    animation-delay: 0.5s;
    animation-direction:normal;
    opacity: 0;*/
}

@media screen and (max-width: 960px) {
  body {
    line-height: 1.6;
  }
}

body.is-active {
  overflow: hidden;
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

a {
  transition-duration: 0.3s;
}

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

/**
* Situation
**/

.s-pc {
  display: none;
}

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

.s-sp {
  display: block;
}

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

.s-pc__inline {
  display: none;
}

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

.s-sp__inline {
  display: inline;
}

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

/**
* Layout
**/

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

.l-content__f {
  width: var(--size_content--full);
}

.l-content__l {
  position: relative;
  max-width: var(--size_content--l);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .l-content__l {
    width: 100%;
    padding: 0;
  }
}

.l-content__m {
  position: relative;
  max-width: var(--size_content--m);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .l-content__m {
    width: 100%;
  }
}

.l-content__s {
  position: relative;
  max-width: var(--size_content--s);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .l-content__s {
    width: 100%;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  color: var(--color_header);
  background: var(--bg_header);
  z-index: 3;
  mix-blend-mode: difference;
}

@media only screen and (min-width: 1180px) {
  .l-header {
    padding: 32px 50px;
  }
}

.l-header.is-white {
  mix-blend-mode: inherit;
}

.l-header.is-active {
  mix-blend-mode: inherit;
  transition: mix-blend-mode .3s, transform 1.3s;
}

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

@media only screen and (min-width: 960px) {
  .l-footer {}
}

/**
* Project
**/

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

@media only screen and (min-width: 1180px) {
  .p-header {}
}

.p-header__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 140px;
  z-index: 5;
}

@media only screen and (min-width: 1180px) {
  .p-header__logo {
    width: 210px;
    top: 29px;
    left: 50px;
  }
}

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

.p-header__logo a {
  display: block;
}

@keyframes header_up {
  0% {
    transform: translate(0%, 100%);
  }

  100% {
    transform: translate3d(0%, 0%, 0px);
  }
}

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

.p-header__global {
  width: 100%;
  /*height: calc(var(--vh, 1vh) * 100);*/
  overflow: auto;
}

@media only screen and (min-width: 1180px) {
  .p-header__global {
    height: auto;
  }
}

.p-header__scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* padding: 40px 0; */
  overflow: auto;
  font-size: min(14.8vw, 40px);
  text-align: center;
  font-weight: 700;
  color: var(--color_main);
  background: var(--color_bg);
  transform: translateX(-100%);
  transition-duration: 0.3s;
  z-index: 4;
}

@media only screen and (min-width: 1180px) {
  .p-header__scroll {
    height: auto;
    padding: 14px 0;
    background: none;
    color: #fff;
    font-size: min(1.8vw, 16px);
    transform: translateX(0%);
    transition-duration: 0s;
  }
}

.p-header__nav {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2.8vw;
  height: 100vh;
  padding: 69px 0;
  /* position: relative; */
  background: url(../img/common/icon-nav.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  z-index: -1;
}

@media only screen and (min-width: 1180px) {
  .p-header__nav {
    position: static;
    justify-content: center;
    align-items: center;
    height: auto;
    width: calc(100% - 469px);
    margin: 0 auto;
    padding: 30px 33px;
    background: none;
  }
}

.p-header__nav .p-header__contact {
  position: static;
  margin-top: min(8vw, 40px);
  padding: 0 5.8vw;
}

@media only screen and (min-width: 1180px) {
  .p-header__nav .p-header__contact {
    display: none !important;
  }
}

.p-header__nav .p-header__contact a {
  background: var(--color_main);
  color: var(--color_bg);
  font-size: min(4.4vw, 18px);
  width: min(44vw, 200px);
  padding: 5px 0 5px 12px;
  font-weight: 500;
}

.p-header__nav .p-header__contact a i {
  mix-blend-mode: difference;
}

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

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

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

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

.p-header__scroll.is-active.p-header__nav:after {
  /*animation: logo_rotate 0.8s ease-in-out 0.2s forwards;*/
}

/*@keyframes logo_rotate {
    0% {
        transform: translate(0%, 100%);
    }

    100% {
        transform: translate(0%, 0);
    }
}*/

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

@media only screen and (min-width: 1180px) {
  .p-header__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 6px min(1.6vw, 32px);
    margin: 0 auto;
    padding: 0 0 0 min(6vw, 60px);
  }
}

.p-header__list li {
  padding: 2px 0;
  line-height: 1.2;
  overflow: hidden;
}

@media only screen and (min-width: 1180px) {
  .p-header__list li {
    /*min-width: 80px;*/
    /*width: calc((100% - 100px) / 6);*/
  }
}

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

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

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

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

@media only screen and (min-width: 1180px) {
  .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__hamburger {
  display: block;
  position: absolute;
  top: 28px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 4;
}

@media only screen and (min-width: 1180px) {
  .p-header__hamburger {
    display: none;
  }
}

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

.l-header.is-active .p-header__hamburger span {
  background: var(--color_main);
}

.p-header__hamburger span:first-child {
  top: 7px;
}

.p-header__hamburger.is-active span:first-child {
  top: 9px;
  transform: rotate(32deg);
}

.p-header__hamburger span:nth-child(2) {
  top: 14px;
}

.p-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger span:nth-child(3) {
  bottom: 8px;
  right: 0;
  width: 0;
}

.p-header__hamburger.is-active span:nth-child(3) {
  width: 100%;
  bottom: 15px;
  transform: rotate(-32deg);
}

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

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

.l-header .p-header__contact {
  
}

@media only screen and (min-width: 1180px) {
  .l-header .p-header__contact {
    display: block;
    z-index: 4;
  }
}

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

.p-header__contact a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  padding: 5px 0 4px 12px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  overflow: hidden;
}

@media only screen and (min-width: 1180px) {
  .p-header__contact a {
    width: 180px;
    padding: 6px 2px 5px 12px;
    font-size: 16px;
  }
}

.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__contact a:hover .p-header__icon img {
  transform: rotate(-130deg) translate(40%, 200%);
  opacity: 0;
}

.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-header__contact a:hover .p-header__icon:after {
  transition-duration: 0.2s;
  transform: rotate(-130deg) translate(0, 0);
  opacity: 1;
}

.p-company__icon:after {
  content: "";
  position: absolute;
  width: 32%;
  height: 40%;
  background: url(../img/common/icon-arrow.svg) no-repeat;
  background-size: 100%;
  transform: rotate(-130deg) translate(-40%, -200%);
  opacity: 0;
}

.p-footer {
  position: relative;
  margin: 0 auto;
  padding: 6.4vw min(5.3vw, 40px) 10vw;
  font-family: var(--font_family--en);
  color: var(--color_footer);
  background: var(--bg_footer);
}

@media only screen and (min-width: 960px) {
  .p-footer {
    display: flex;
    gap: min(5.3vw, 40px);
    justify-content: space-between;
    padding: min(5.3vw, 80px) min(5.3vw, 80px);
    border-top: 1px solid #333;
  }
}

.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: min(9.6vw, 32px) 2.8vw;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .p-footer__nav {
    gap: min(9.6vw, 32px) min(2.8vw, 40px);
    width: 80%;
  }
}

.p-footer__column {
  width: calc(50% - 2.8vw);
}

@media only screen and (min-width: 960px) {
  .p-footer__column {
    width: calc((100% - min(14vw, 200px)) / 6);
  }
}

.p-footer__head {
  margin-bottom: 8px;
  font-size: min(4.16vw, 16px);
  font-weight: 700;
}

@media only screen and (min-width: 960px) {
  .p-footer__head {}
}

.p-footer__head a {
  transition-duration: 0.3s;
}

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

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

.p-footer__item {
  font-size: min(3.57vw, 14px);
}

@media only screen and (min-width: 960px) {
  .p-footer__item {}
}

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

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

.p-footer__btm {
  margin-top: min(21vw, 80px);
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .p-footer__btm {
    margin-top: 0;
  }
}

.p-footer__back {
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .p-footer__back {
    text-align: right;
  }
}

.p-footer__back span {
  font-weight: 600;
}

.p-footer__back span a {
  transition-duration: 0.3s;
}
  
.p-footer__back span a:hover {
  /*opacity: 0.8;*/
}

.p-footer__back span a i {
  position: relative;
  top: 0px;
  overflow: hidden;
  display: inline-block;
  width: min(3vw, 15px);
  height: min(4.4vw, 16px);
}

@media only screen and (min-width: 960px) {
  .p-footer__back span a i {
    top: 2px;
    width: min(2.2vw, 20px);
    height: min(2vw, 19px);
  }
}

.p-footer__back span a img {
  width: 92%;
  transition-duration: 0.2s;
  transform: rotate(-180deg);
}

@media only screen and (min-width: 960px) {
  .p-footer__back span a img {
    width: 62%;
  }
}

.p-footer__back span a:hover img {
  transform: rotate(-180deg) translate(0,200%);
  opacity: 0;
}

.p-footer__back span a i:after {
  content: "";
  position: absolute;
  width: 92%;
  height: 100%;
  background: url(../img/common/icon-arrow.svg) no-repeat;
  background-size: 100%;
  transform: rotate(-180deg) translate(100%, -200%);
  opacity: 0;
}

@media only screen and (min-width: 960px) {
  .p-footer__back span a i:after {
    width: 62%;
  }
}

.p-footer__back span a:hover i:after {
  transition-duration: 0.2s;
  transform: rotate(-180deg) translate(100%,0);
  opacity: 1;
}


/*.p-footer__back span:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  margin-left: min(1.8vw, 6px);
  background: url(../img/common/icon-arrow.svg) no-repeat;
  background-size: 100%;
  transform: rotate(-180deg);
}*/

.p-footer__copy {
  display: block;
  margin-top: min(14vw, 80px);
  font-size: min(3.57vw, 14px);
  font-weight: 400;
  white-space: nowrap;
}

@media only screen and (min-width: 960px) {
  .p-footer__copy {
    margin-top: min(12vw, 120px);
    font-size: min(1.2vw, 14px);
  }
}

.p-footer__logo {
  margin-bottom: min(2.8vw, 32px);
  padding: 0 min(5.3vw, 40px) min(2.3vw, 24px);
}

@media only screen and (min-width: 960px) {
  .p-footer__logo {
    margin-bottom: min(2.8vw, 40px);
    padding: 0 min(5.3vw, 80px);
  }
}

.p-footer__logo svg {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: auto;
}

.c-head {
  padding: 0 min(5.3vw, 40px);
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .c-head {
    display: flex;
    align-items: center;
    gap: min(4.2vw, 60px);
    padding: 0 min(5.6vw, 80px);
    text-align: left;
  }
}

.c-head__between {
  justify-content: space-between;
  align-items: flex-end;
}

.c-head__ttl {
  display: inline-block;
  position: relative;
  margin-bottom: min(2.8vw, 20px);
  font-family: var(--font_family--en);
  font-weight: 700;
  line-height: 0.8;
}

@media only screen and (min-width: 960px) {
  .c-head__ttl {
    margin-bottom: min(5vw, 20px);
    margin-bottom: 0;
  }
}

.c-head__ttl .origin {
  -webkit-text-fill-color: var(--color_bg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color_main);
}

.c-head__ttl .dummy {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 0);
}

.c-head__ttl.is-active .dummy {
  /*animation: text-clip 1.2s linear forwards;*/
}

.c-head__ttl.is-complete .dummy {
  animation: text-clip 1.2s linear forwards;
}

@keyframes text-clip {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0);
  }

  100% {
    clip-path: polygon(0 0, 280% 0, 0 280%);
  }
}

.c-head__ttl--l {
  font-size: min(18.4vw, 80px);
  line-height: 0.8;
}

@media only screen and (min-width: 960px) {
  .c-head__ttl--l {
    font-size: min(10.2vw, 200px);
  }
}

.c-head__ttl--m {
  font-size: min(18.4vw, 80px);
  line-height: 1;
}

@media only screen and (min-width: 960px) {
  .c-head__ttl--m {
    font-size: min(5.3vw, 120px);
    line-height: 0.9;
  }
}

@media only screen and (min-width: 960px) {
  .c-head__ttlInner {
    display: flex;
    align-items: flex-end;
    gap: min(4vw, 40px);
  }
}

.c-head__desc {
  margin-top: min(5.3vw, 60px);
  margin-bottom: min(4vw, 40px);
  font-size: min(5.8vw, 24px);
  font-weight: 500;
  line-height: 1.3;
}

@media only screen and (min-width: 960px) {
  .c-head__desc {
    margin-top: 0;
    margin-bottom: 0;
    font-size: min(2.8vw, 48px);
    line-height: 1.2;
  }
}

.c-head__desc span {
  display: inline-block;
  overflow: hidden;
}

.c-head__desc span b {
  display: inline-block;
  line-height: 1;
}

.c-head__link {
  /*display: none;*/
  overflow: hidden;
}

@media only screen and (min-width: 960px) {
  .c-head__link {
    display: block;
  }
}

.c-head__link b {
  display: inline-block;
  font-weight: 600;
}

/*.c-head__link a {
  font-size: min(14px,3.57vw); 
}

.c-head__link a:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  margin-left: 9px;
  background: url(../img/common/icon-arrow.svg) no-repeat;
  background-size: 100%;
  transform: rotate(-130deg) translate(0px, -3px);
}*/

.c-head__time {
  margin-top: min(2vw, 20px);
  font-size: min(4.16vw, 16px);
  font-family: var(--font_family--en);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (min-width: 960px) {
  .c-head__time {
    width: 30%;
    position: relative;
    top: -2px;
    margin-top: 0;
    font-size: min(1.28vw, 20px);
  }
}

.c-head__time b {
  display: inline-block;
}

.c-viewmore {
  margin-left: min(1.8vw, 16px);
  font-family: var(--font_family--en);
  line-height: 1.1;
  white-space: nowrap;
  font-size: min(3.57vw, 14px);
  font-weight: 700;
}

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

/*.c-viewmore span:after ,
.c-viewmore a:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 15px;
    margin-left: 6px;
    background: url(../img/common/icon-arrow.svg) no-repeat;
    background-size: 100%;
    transform: rotate(-130deg);
}*/

.c-viewmore i {
  display: inline-block;
  position: relative;
  overflow: hidden;
  top: 2px;
}

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

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

.c-viewmore:hover i img {
  transform: rotate(-130deg) translate(40%, 200%);
  opacity: 0;
}

.c-viewmore i:after {
  content: "";
  position: absolute;
  top: 6%;
  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;
}

.c-viewmore:hover i:after {
  transition-duration: 0.2s;
  transform: rotate(-130deg) translate(0, 0);
  opacity: 1;
}

.c-slide__nav {
  display: flex;
  width: min(28vw, 120px);
  margin: min(8vw, 60px) auto 0;
  padding: min(1.8vw, 12px) 0;
  border-radius: 50px;
  border: 1px solid #fff;
}

.c-slide__nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 4px 0;
  text-align: center;
  cursor: pointer;
}

.c-slide__nav span img {
  width: 26%;
}

.c-slide__nav--l {
  border-right: 1px solid var(--color_main);
}

.c-slide__nav--l img {
  transform: rotate(90deg);
}

.c-slide__nav--r img {
  transform: rotate(-90deg);
}


/* --------------250117~追加-------------- */

/* アーカイブ・固定ページ用 */
.l-subPage__inner {
  padding: 143px 0 0;
}

@media only screen and (min-width: 960px) {
  .l-subPage__inner {
    padding: 209px 0 0;
  }
}

/* アーカイブ・固定ページ用 */
/* 詳細用 */
.l-subPage__detail {
  padding-top: 98px;
}

@media only screen and (min-width: 960px) {
  .l-subPage__detail {
    padding: min(11.168981481481481vw, 193px) 0 0;
  }
}


.l-subPage__detail-container {
  padding: 0 min(5.3vw, 40px);
}

@media only screen and (min-width: 960px) {
  .l-subPage__detail-container {
    width: 65.972vw;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0;
  }
}

.c-back {
  /* margin-left: min(5.3vw, 40px); */
  margin-left: 20px;
  font-family: var(--font_family--en);
  line-height: 1.1;
  white-space: nowrap;
  font-size: min(4.57vw, 16px);
  font-weight: 700;
}

@media only screen and (min-width: 960px) {
  .c-back {
    font-size: min(1.4vw, 16px);
    margin-left: min(5.8vw, 80px);
  }
}
.c-back--bottom {
  margin-left: 0;
  
}

@media only screen and (min-width: 960px) {
  .c-back--bottom {
    margin-left: min(1.8vw, 16px);
  }
}
@media only screen and (min-width: 960px) {
  .p-about__link.c-back--bottom {
    margin-top: min(5.787037037037037vw, 100px)
  }
}



.c-back i {
  display: inline-block;
  position: relative;
  overflow: hidden;
  top: 2px;
}

@media only screen and (min-width: 960px) {
  .c-back i {
    top: 1px;
  }
}

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

.c-back:hover i img {
  transform: rotate(130deg) translate(40%, 200%);
  opacity: 0;
}

.c-back i:after {
  content: "";
  position: absolute;
  top: 6%;
  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;
}

.c-back:hover i:after {
  transition-duration: 0.2s;
  transform: rotate(130deg) translate(0, 0);
  opacity: 1;
}

/* 詳細用 */
/* 最大値を設ける要素 */
.l-subPage__container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
}

/* 最大値を設ける要素 */
.l-subPage__head {}

.c-head__ttl--center {
  margin-bottom: min(2.8vw, 20px);
  width: 100%;
  text-align: center;
  font-size: min(17.14vw, 60px);
}

@media only screen and (min-width: 960px) {
  .c-head__ttl--center {
    margin-bottom: min(5vw, 20px);
    margin-bottom: 0;
    font-size: min(8.6vw, 120px);
  }
}

.c-head__ttl--actual {
  -webkit-text-fill-color: var(--color_bg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color_main);
}

.c-head__ttl--border {
  clip-path: polygon(0 0, 0 0, 0 0);
  animation: text-clip-head 1.2s linear forwards 1.4s;
  z-index: 1;
}

@keyframes text-clip-head {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0);
  }

  100% {
    clip-path: polygon(0 0, 140% 0, 0 300%);
  }
}

.c-head__ttl--center .dummy {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 0 0, 0 0);
}

.c-blankBtn {
  width: min(76.6vw, 301px);
  height: min(12.21vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  border: 1px solid var(--color_main);
}

@media only screen and (min-width: 960px) {
  .c-blankBtn {
    width: min(29.41vw, 397px);
    height: min(4.15vw, 56px);
  }
}

.c-blankBtn__txt {
  font-size: min(3.57vw, 14px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media only screen and (min-width: 960px) {
  .c-blankBtn__txt {
    font-size: min(1.2vw, 16px);
    letter-spacing: 0.04em;
  }
}

.c-blank {
  position: relative;
  overflow: hidden;
  top: -1px;
  left: -4px;
}

@media only screen and (min-width: 960px) {
  .c-blank {
    top: 0;
    left: -2px;
  }
}

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

.c-blank: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;
}

a:hover .c-blank img {
  transform: rotate(-130deg) translate(40%, 200%);
  opacity: 0;
}

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

.c-liner {
  background-image: linear-gradient(to right, var(--color_main), var(--color_main));
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.25;
  width: fit-content;
}

.c-liner:hover {
  animation: none;
}

@media only screen and (min-width: 960px) {
  .c-liner:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.c-txtHover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 0.8;
}

.c-txtHover span {
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
}

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

@media only screen and (min-width: 1180px) {
  .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;
  }
}

@media only screen and (min-width: 960px) {
  .c-txtHover:hover span.dummy {
    transform: translate(0, 0);
  }
}

.c-none {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.c-none p {
  /*position: absolute;
  width: 100%;*/
  font-size: min(3.57vw, 14px);
  text-align: center;
}

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

@media only screen and (min-width: 960px) {
  .p-company__link_border {
    border-top: 1px solid #333333;
  }
}

.p-filter-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .p-filter-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    z-index: 2;
    width: max-content;
  }
}

.p-filter-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(60, 60, 60, 1);
  border-radius: 10px 10px 0 0;
  padding: 12px;
}

@media only screen and (min-width: 960px) {
  .p-filter-nav__list {
    border-radius: 30px;
    padding: 5px 30px;
  }
}

.p-filter-nav__list input {
  display: none;
}

.p-filter-nav__list input:checked + span {
  font-weight: bold;
}

.p-filter-nav__list li {
  border-right: 1px solid #fff;
}

@media only screen and (min-width: 960px) {
  .p-filter-nav__list li {
    border-right: 1px solid #fff;
  }
}

.p-filter-nav__list li:last-child {
  border-right: 0;
}

.p-filter-nav__list label {
  padding: 0 16px;
  cursor: pointer;
}

@media only screen and (min-width: 960px) {
  .p-filter-nav__list label {
    padding: 0 20px;
  }
}

.p-filter-nav__item {
  color: rgba(225, 225, 225, 1);
  padding: 2px 15px;
  border-right: 1px solid rgba(134, 134, 134, 1);
  transition: font-weight 0.3s ease;
}


.p-filter-nav__item {
  font-weight: 300;
  font-size: 12px;
}

@media only screen and (min-width: 960px) {
  .p-filter-nav__item {
    font-size: 16px;

  }
}

.p-filter-nav__item.active {
  font-weight: 700;
}

.p-filter-nav__list .first {
  padding: 2px 15px 2px 0;
}

.p-filter-nav__list .last {
  padding: 2px 0 2px 15px;
  border-right: none;
}

.c-br--sp {
  display: block;
}

@media only screen and (min-width: 960px) {
  .c-br--sp {
    display: none;
  }
}

.is-hidden {
  display: none !important;
}

.is-fade-in {
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  transform: scale(-1, 1);
}

@media only screen and (min-width: 960px) {
  .p-loading {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.p-loading__spinner {
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
}

.spinner-bg {
  fill: none;
  stroke: rgba(54, 54, 54, 1);
  stroke-width: 4;
}

.spinner-progress {
  fill: none;
  stroke: rgba(255, 255, 255, 1);
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.6s linear;
}

.spinner-progress.is-active {
  stroke-dashoffset: 0;
}

.l-subPage__ttlInner {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
}

/* タイトルアニメーション */
.l-subPage__ttlInner .c-head__ttl--dumy,
.l-subPage__ttlInner .c-head__ttl--actual,
.l-subPage__ttlInner .c-head__ttl--border {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.char {
  display: inline-block;
  transform-origin: center;
}
.c-head__ttl--dumy .char {
  transform: rotateY(0deg);
}

.c-head__ttl--actual .char {
  transform: rotateY(90deg);
}

@keyframes rotateOut {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(90deg);
  }
}
@keyframes rotateIn {
  0% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}