@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
:root {
  --color_blue: #3c6f92;
  --bg_blue: #e4eaf0;
}

html, body {
  font-size: 62.5%;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--color_blue);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body * {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: .3s;
}

.min {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.pc {
  display: block;
}
@media (max-width: 798px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 798px) {
  .sp {
    display: block;
  }
}

main {
  background-color: #fff;
}

/*--------------------------------
common
--------------------------------*/
.l-inner__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-cv__button {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  text-align: center;
  color: #fff;
  padding: 20px 10px;
  background-color: #000;
}
.p-cv__button strong {
  display: block;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.2;
}
.p-cv__button strong.en {
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
}
.p-cv__button span {
  display: block;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.2;
  padding: 10px 15px;
  border-radius: 50px;
  border: solid 1px #fff;
  max-width: 250px;
  margin: 10px auto 0;
  text-align: left;
  position: relative;
  transition: .3s;
}
.p-cv__button span:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background-color: #fff;
  transition: .3s;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.p-cv__button:hover span {
  background-color: #fff;
  color: #000;
}
.p-cv__button:hover span:after {
  background-color: #000;
}
.p-cv__button--req {
  background-color: var(--color_blue);
}
.p-cv__button--req:hover span {
  color: var(--color_blue);
}
.p-cv__button--req:hover span:after {
  background-color: var(--color_blue);
}

.p-brand-head__logo {
  justify-content: flex-start;
  align-items: flex-end;
}
.p-brand-head__logo strong {
  display: block;
  width: 96px;
}
@media (max-width: 798px) {
  .p-brand-head__logo strong {
    width: 70px;
  }
}
.p-brand-head__logo span {
  display: block;
  color: var(--color_blue);
  font-size: clamp(1.7rem, 2vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  padding: 0 0 20px 20px;
}
@media (max-width: 798px) {
  .p-brand-head__logo span {
    padding: 0 0 10px 10px;
  }
}
.p-brand-head__text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
  margin-top: 30px;
}

/*--------------------------------
header
--------------------------------*/
@media (max-width: 798px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }
  header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background-color: var(--color_blue);
    transition: .3s;
    opacity: 0;
  }
  header.move {
    opacity: 1;
    pointer-events: initial;
  }
  header.open:after {
    opacity: 1;
  }
}
header .header-head {
  display: none;
}
@media (max-width: 798px) {
  header .header-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 260px;
    position: relative;
    z-index: 1;
  }
  header .header-head-logo {
    width: 40px;
  }
  header .header-head-text {
    width: calc(100% - 50px);
    font-size: 1rem;
    line-height: 1;
  }
  header .header-head-text span {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 5px;
  }
}
header .header-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg_blue);
  padding: 0 15px;
  transition: .3s;
}
header .header-menu__list {
  margin: 55px auto 0;
  padding: 50px 0 0;
  max-width: 400px;
  width: 100%;
}
header .header-menu__copy {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}
header.open .header-menu {
  right: 0;
}

.nav-toggle {
  display: none;
}
@media (max-width: 798px) {
  .nav-toggle {
    position: relative;
    z-index: 1;
    display: block;
    width: 25px;
    height: 10px;
  }
  .nav-toggle button {
    display: block;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 0;
  }
  .nav-toggle button span {
    width: 25px;
    height: 1px;
    background-color: var(--color_blue);
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .nav-toggle button span:nth-child(1) {
    top: 0;
  }
  .nav-toggle button span:nth-child(2) {
    top: 4px;
    transform: rotate(32deg);
    transition: .3s;
    opacity: 0;
  }
  .nav-toggle button span:nth-child(3) {
    top: 9px;
  }
}
.nav-toggle.open button span:nth-child(2) {
  transform: rotate(-32deg);
  opacity: 1;
}

.fix-btn__req {
  position: fixed;
  top: 60px;
  right: 60px;
  background-color: var(--color_blue);
  border: solid 1px var(--color_blue);
  box-shadow: 2px 4px 0 #2e5570;
  padding: 20px;
  border-radius: 100px;
  display: block;
  width: 260px;
  color: #fff;
  z-index: 10000;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1;
}
.fix-btn__req:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background-color: #fff;
  transition: .3s;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.fix-btn__req:hover {
  color: var(--color_blue);
  background-color: #fff;
}
.fix-btn__req:hover:after {
  background-color: var(--color_blue);
}
@media (max-width: 798px) {
  .fix-btn__req {
    display: none;
  }
}

/*--------------------------------
loading
--------------------------------*/
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 30000;
  transition: .6s;
}
.loading.none {
  opacity: 0;
  pointer-events: none;
}
.loading__inner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
}
.loading__inner-txt {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1;
  padding-bottom: 30px;
}
.loading__inner-txt span {
  display: block;
  transition: 1s;
  margin-bottom: 30px;
  transform: translateY(5px);
  opacity: 0;
}
.loading__inner-txt span.move {
  opacity: 1;
  transform: translateY(0);
}
.loading__inner-logo {
  max-width: 480px;
  width: 80%;
  margin: 0 auto;
  transition: 1s;
  transform: translateY(5px);
  opacity: 0;
}
.loading__inner-logo.move {
  opacity: 1;
  transform: translateY(0);
}
.loading__skip {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 798px) {
  .loading__skip {
    bottom: 15px;
    right: 15px;
  }
}
.loading__skip:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background-color: var(--color_blue);
  margin-left: 10px;
  transition: .3s;
}
.loading__skip:hover:after {
  transform: scale(1.5);
}

/*--------------------------------
mainvisual
--------------------------------*/
.mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 798px) {
  .mainvisual {
    height: auto;
    overflow: inherit;
  }
}
.mainvisual__head {
  position: absolute;
  top: 5%;
  left: 5%;
  align-items: flex-end;
  z-index: 10;
}
@media (max-width: 798px) {
  .mainvisual__head {
    top: 3%;
    left: 0;
    justify-content: center;
    width: 100%;
  }
}
.mainvisual__head strong {
  display: block;
  width: 96px;
}
@media (max-width: 798px) {
  .mainvisual__head strong {
    width: 70px;
  }
}
.mainvisual__head span {
  display: block;
  color: #fff;
  font-size: clamp(1.7rem, 2vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  padding: 0 0 20px 20px;
}
@media (max-width: 798px) {
  .mainvisual__head span {
    padding: 0 0 10px 10px;
  }
}
.mainvisual__movie {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.mainvisual__movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: .6s;
}
.mainvisual__movie video.is-play {
  opacity: 1;
}
@media (max-width: 798px) {
  .mainvisual__movie video {
    min-width: auto;
    width: 100%;
  }
}
.mainvisual__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
}
.mainvisual__inner-txt {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1;
  padding-bottom: 30px;
  color: #fff;
}
.mainvisual__inner-txt span {
  display: block;
  margin-bottom: 30px;
}
.mainvisual__inner-logo {
  max-width: 750px;
  width: 80%;
  margin: 0 auto;
}
.mainvisual__scroll {
  display: none;
}
@media (max-width: 798px) {
  .mainvisual__scroll {
    display: block;
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
  }
  .mainvisual__scroll span {
    font-size: 1.2rem;
    line-height: 1;
  }
  .mainvisual__scroll:before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: -60px;
    content: "";
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*--------------------------------
scroll-container
--------------------------------*/
.sticky-wrap {
  background: url(../images/intro-bg.jpg) no-repeat center center/cover;
}

.scroll {
  height: 400vh;
  position: relative;
}
.scroll__contents {
  height: 100%;
  width: 100vw;
  position: relative;
  z-index: 1;
}
.scroll__contents-intro {
  flex-wrap: wrap;
}
.scroll__contents-intro-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.horizontal-scroll {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  will-change: transform;
}

.sticky-wrap {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sticky-wrap img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

.scroll__contents {
  display: flex;
}

/*--------------------------------
.intro
--------------------------------*/
@media (max-width: 798px) {
  .intro-wrap {
    background: url(../images/intro-bg_sp.jpg) no-repeat center center/cover;
  }
}
.intro-wrap .scroll {
  position: relative;
}

.intro-head {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  opacity: 0;
  transition: .3s;
  pointer-events: none;
}
.intro-head.is-fixed {
  opacity: 1;
}
.intro-head.intro-head.is-end {
  opacity: 0;
}
.intro-body {
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
  padding-top: 5%;
}
@media (max-width: 798px) {
  .intro-body {
    width: 100%;
    display: block;
    padding: 60px 0 0;
  }
}
.intro-body__box1 {
  width: 35%;
}
@media (max-width: 1100px) {
  .intro-body__box1 {
    width: 38%;
  }
}
@media (max-width: 798px) {
  .intro-body__box1 {
    width: 84%;
    margin: 0 auto 60px;
  }
}
.intro-body__box2 {
  width: 55%;
}
@media (max-width: 1100px) {
  .intro-body__box2 {
    width: 60%;
  }
}
@media (max-width: 798px) {
  .intro-body__box2 {
    width: 84%;
    margin: 0 auto 80px;
  }
}
.intro-body__title1 {
  font-size: clamp(1.5rem, 3vw, 4rem);
  line-height: 1.8;
  margin-bottom: 60px;
  letter-spacing: .4rem;
}
@media (max-width: 798px) {
  .intro-body__title1 {
    margin-bottom: 50px;
  }
}
.intro-body__title2 {
  font-size: clamp(2rem, 2.4vw, 3.4rem);
  line-height: 2.4;
}
@media (max-width: 1100px) {
  .intro-body__title2 {
    line-height: 2;
  }
}
.intro-body__text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.8;
  margin: 0 0 20px;
}
@media (max-width: 1100px) {
  .intro-body__text {
    line-height: 1.6;
  }
}
.intro-body__text--dash {
  display: flex;
  align-items: center;
}
.intro-body__text--dash:after {
  content: '';
  width: 150px;
  height: 1px;
  background-color: var(--color_blue);
  margin-left: 1rem;
  display: block;
}
@media (max-width: 798px) {
  .intro-body__text--dash:after {
    width: 80px;
  }
}

/*--------------------------------
.gallery
--------------------------------*/
.gallery-img {
  position: relative;
}
.gallery-img span {
  position: absolute;
  display: block;
  will-change: transform;
}
.gallery-img span img {
  width: 100%;
  height: auto;
}
.gallery-img__sub1 {
  width: 40%;
  top: 18%;
  left: -12%;
}
@media (max-width: 1450px) {
  .gallery-img__sub1 {
    left: -7%;
  }
}
.gallery-img__sub2 {
  width: 40%;
  top: 5%;
  left: -20%;
}
.gallery-img__sub3 {
  width: 40%;
  bottom: 4%;
  left: -56%;
}

/*--------------------------------
.promise
--------------------------------*/
.promise-head {
  width: 100%;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (max-width: 798px) {
  .promise-head {
    height: auto;
  }
}
.promise-head .p-brand-head {
  position: absolute;
  top: 3%;
  left: 3%;
}
@media (max-width: 798px) {
  .promise-head .p-brand-head {
    display: none;
  }
}
.promise-head .p-brand-head__logo span {
  color: #fff;
}
.promise-head__image {
  width: 100%;
  height: 100%;
}
.promise-head__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promise-head__text {
  font-size: clamp(2rem, 3vw, 3.8rem);
  line-height: 1.4;
  position: absolute;
  bottom: -3%;
  left: -4.5%;
  max-width: 1000px;
  width: 80%;
  text-align: center;
}
@media (max-width: 798px) {
  .promise-head__text {
    line-height: 2;
    left: 0;
    width: 100%;
  }
}
.promise-head__text strong {
  display: block;
  font-weight: 400;
  font-size: clamp(5.5rem, 12vw, 19rem);
  line-height: 1;
  margin-top: 3%;
  letter-spacing: .25rem;
}
.promise-intro {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 798px) {
  .promise-intro {
    padding: 10% 0;
  }
}
.promise-intro__text {
  max-width: 1120px;
  width: 84%;
  margin: 0 auto;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 2.2;
  position: relative;
  z-index: 1;
}
.promise-intro:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/logo-mark_thin.svg) no-repeat bottom right/contain;
  max-width: 350px;
  width: 40%;
  height: 0;
  padding-top: 16%;
}
@media (max-width: 798px) {
  .promise-intro:after {
    padding-top: 30%;
  }
}
.promise-body {
  position: relative;
}
.promise-body__list {
  position: relative;
  margin: 0 0 150px;
}
.promise-body__list:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1450px) {
  .promise-body__list {
    margin-bottom: 10%;
  }
}
@media (max-width: 798px) {
  .promise-body__list {
    margin-bottom: 0;
  }
}
.promise-body__box {
  max-width: 800px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 1;
}
@media (max-width: 798px) {
  .promise-body__box {
    position: relative;
    width: 100%;
    top: initial;
    left: initial;
    transform: none;
    height: auto;
  }
}
.promise-body__box-item {
  background-color: #eee;
  width: 50%;
  height: 100%;
  position: relative;
}
@media (max-width: 798px) {
  .promise-body__box-item {
    width: 100%;
    height: auto;
    padding: 10% 0 5%;
  }
}
.promise-body__box-item--reverse {
  margin-left: auto;
}
.promise-body__box-inner {
  position: absolute;
  top: 50%;
  width: 84%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 798px) {
  .promise-body__box-inner {
    position: relative;
    top: initial;
    left: initial;
    transform: none;
    margin: 0 auto;
  }
}
.promise-body__box-midashi1 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.6;
  padding-bottom: 3%;
  margin-bottom: 3%;
  border-bottom: solid 1px var(--color_blue);
}
@media (max-width: 1450px) {
  .promise-body__box-midashi1 {
    font-size: 1.8vw;
  }
}
@media (max-width: 798px) {
  .promise-body__box-midashi1 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }
}
.promise-body__box-midashi2 {
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  font-weight: 600;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
  margin-bottom: 3%;
}
@media (max-width: 1450px) {
  .promise-body__box-midashi2 {
    font-size: 1.6vw;
  }
}
@media (max-width: 798px) {
  .promise-body__box-midashi2 {
    font-size: clamp(1.4rem, 1.7vw, 2rem);
  }
}
.promise-body__box-midashi2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: var(--color_blue);
}
.promise-body__box-text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.8;
  font-weight: 300;
}
@media (max-width: 1450px) {
  .promise-body__box-text {
    font-size: 1.1vw;
  }
}
@media (max-width: 798px) {
  .promise-body__box-text {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  }
}
.promise-slider--reverse {
  transform: scaleX(-1);
}
.promise-slider--reverse .slick-slide {
  transform: scaleX(-1);
}

/*--------------------------------
.lineup
--------------------------------*/
.lineup {
  background-color: var(--bg_blue);
  position: relative;
  padding: 240px 0;
}
@media (max-width: 798px) {
  .lineup {
    padding: 80px 0;
  }
}
.lineup:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/logo-mark_thin.svg) no-repeat bottom right/contain;
  max-width: 350px;
  width: 40%;
  height: 0;
  padding-top: 16%;
}
@media (max-width: 798px) {
  .lineup:after {
    padding-top: 30%;
  }
}
.lineup__title {
  position: sticky;
  top: clamp(20px, 6vw, 120px);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1;
  text-align: center;
  z-index: 1;
}
@media (max-width: 798px) {
  .lineup__title {
    position: relative;
    top: initial;
    margin: 0 0 50px;
  }
}
.lineup__title strong {
  display: block;
  font-weight: 400;
  font-size: clamp(4rem, 6vw, 7rem);
  margin-bottom: 30px;
}
@media (max-width: 798px) {
  .lineup__title strong {
    margin-bottom: 15px;
  }
}
.lineup__contents {
  flex: 1;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 798px) {
  .lineup__contents {
    width: 84%;
  }
}
.lineup__contents li {
  max-width: 370px;
  width: 35%;
  margin: 0 0 -12%;
  transition: .6s;
  transform: translateY(10px);
  opacity: 0;
}
@media (max-width: 798px) {
  .lineup__contents li {
    width: 80%;
    margin-bottom: 50px;
  }
}
.lineup__contents li:nth-child(even) {
  margin-left: auto;
}
.lineup__contents li:last-child {
  margin-bottom: 0;
}
.lineup__contents li.run {
  opacity: 1;
  transform: translateY(0);
}
.lineup__contents-name {
  font-weight: 600;
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  line-height: 1.2;
  text-align: center;
  margin: 15px 0 10px;
}
.lineup__contents-text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.8;
  font-weight: 300;
}
.lineup__contents-button {
  display: block;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.2;
  padding: 10px 15px;
  border-radius: 50px;
  border: solid 1px var(--color_blue);
  color: var(--color_blue);
  max-width: 250px;
  margin: 20px auto 0;
  text-align: left;
  position: relative;
}
.lineup__contents-button:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background-color: var(--color_blue);
  transition: .3s;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.lineup__contents-button:hover {
  background-color: var(--color_blue);
  color: #fff;
}
.lineup__contents-button:hover:after {
  background-color: #fff;
}

/*--------------------------------
.about
--------------------------------*/
.about {
  padding: 80px 0 30px;
}
@media (max-width: 798px) {
  .about {
    padding: 40px 0 20px;
  }
}
.about__inner {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 798px) {
  .about__inner {
    width: 84%;
  }
}
.about__title {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1;
  text-align: left;
  z-index: 1;
  margin: 0 0 70px;
}
@media (max-width: 798px) {
  .about__title {
    text-align: center;
    margin: 0 0 50px;
  }
}
.about__title strong {
  display: block;
  font-weight: 400;
  font-size: clamp(4rem, 6vw, 7rem);
  margin-bottom: 30px;
}
@media (max-width: 798px) {
  .about__title strong {
    margin-bottom: 15px;
  }
}
.about__head {
  align-items: flex-end;
  margin-bottom: 200px;
}
@media (max-width: 798px) {
  .about__head {
    display: block;
    margin-bottom: 50px;
  }
}
.about__head-box1 {
  width: 55%;
}
@media (max-width: 798px) {
  .about__head-box1 {
    width: 100%;
  }
}
.about__head-box2 {
  width: 40%;
}
@media (max-width: 798px) {
  .about__head-box2 {
    width: 100%;
  }
}
.about__head-image {
  max-width: 530px;
  width: 86%;
  margin: 0 0 40px;
}
.about__head-image span {
  display: block;
  width: calc(100% / 3 - 10px);
  opacity: 0;
}
.about__head-image span:nth-of-type(1) {
  transition: .4s;
}
.about__head-image span:nth-of-type(2) {
  transition: .8s;
}
.about__head-image span:nth-of-type(3) {
  transition: 1.2s;
}
.about__head-image.run span {
  opacity: 1;
}
@media (max-width: 798px) {
  .about__head-image {
    margin: 0 auto 25px;
  }
}
.about__head-midashi {
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 2;
}
@media (max-width: 798px) {
  .about__head-midashi {
    margin: 0 0 20px;
  }
}
.about__head-logo {
  max-width: 96px;
  margin: 0 0 40px;
}
@media (max-width: 798px) {
  .about__head-logo {
    max-width: 60px;
    margin: 0 0 20px;
  }
}
.about__head-text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.8;
  font-weight: 300;
}
.about__body {
  flex-flow: row-reverse;
  margin: 0 0 150px;
}
@media (max-width: 798px) {
  .about__body {
    display: block;
    margin: 0 0 50px;
  }
}
.about__body-image {
  width: 28%;
}
@media (max-width: 798px) {
  .about__body-image {
    width: 100%;
    margin: 0 0 20px;
  }
}
.about__body-table {
  width: 65%;
}
@media (max-width: 798px) {
  .about__body-table {
    width: 100%;
  }
}
.about__body-table table {
  width: 100%;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 2;
}
.about__body-table table tr {
  border-bottom: solid 1px #f2f2f2;
}
.about__body-table table tr th {
  text-align: left;
  padding: 20px 0;
  min-width: 120px;
  width: 120px;
  font-weight: 700;
}
@media (max-width: 798px) {
  .about__body-table table tr th {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 15px 0 2px;
  }
}
.about__body-table table tr td {
  padding: 20px 0;
}
@media (max-width: 798px) {
  .about__body-table table tr td {
    width: 100%;
    display: block;
    padding: 0 0 15px;
  }
  .about__body-table table tr td .pc-only {
    display: none;
  }
}
.about__body-table table tr td .sp-flex {
  display: inline-block;
}
@media (max-width: 798px) {
  .about__body-table table tr td .sp-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .about__body-table table tr td .sp-flex br {
    display: none;
  }
}
.about__body-table-name {
  display: inline-block;
  font-weight: 700;
  padding-right: 12px;
  position: relative;
}
.about__body-table-name:after {
  content: '\03a';
  position: absolute;
  top: 0;
  right: 3px;
}
@media (max-width: 798px) {
  .about__body-table-name:after {
    display: none;
  }
}
@media (max-width: 798px) {
  .about__body-table-name {
    border: solid 1px var(--color_blue);
    display: block;
    min-width: 130px;
    width: 130px;
    padding: 2px 0;
    text-align: center;
    line-height: 1.4;
    font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  }
}
@media (max-width: 798px) {
  .about__body-table-number {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    display: block;
    width: calc(100% - 140px);
    text-align: left;
    font-size: clamp(1.7rem, 1.8vw, 2rem);
    line-height: 1;
  }
}
@media (max-width: 798px) {
  .about__body-table-th {
    display: block;
    margin-bottom: 5px;
  }
}
.about__button {
  max-width: 750px;
  margin: 0 auto;
}
.about__button .p-cv__button {
  margin: 0 0 50px;
}
@media (max-width: 798px) {
  .about__button .p-cv__button {
    margin-bottom: 20px;
  }
}

/*--------------------------------
footer
--------------------------------*/
footer {
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 798px) {
  footer {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
footer .logo {
  max-width: 80px;
  margin: 0 auto 30px;
}
@media (max-width: 798px) {
  footer .logo {
    width: 60px;
    max-width: 60px;
    margin: 0;
  }
}
footer address {
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  font-style: normal;
  line-height: 1;
}
@media (max-width: 798px) {
  footer address {
    text-align: right;
  }
}

.stalker {
  border-radius: 50%;
  /* 正円 */
  width: 120px;
  /* 円の幅 */
  height: 120px;
  /* 円の高さ */
  top: -60px;
  /* 円の高さの半分 */
  left: -60px;
  /* 円の幅の半分 */
  opacity: 0;
  /* カーソルを画面内に入れるまでは透明 */
  pointer-events: none;
  /* 直下のリンクをクリック可能にする */
  position: fixed;
  /* スクロールしてもカーソルの位置で固定 */
  transition: all .1s ease-out;
  /* 遅れてついてくる時間 */
  z-index: 19999;
  /* 一番上に来るように */
  border: solid 1px var(--color_blue);
}
.stalker:after {
  content: 'SCROLL';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  transition: .3s;
  font-size: 1.2rem;
  letter-spacing: .15rem;
}
.stalker.stalker.js-hover {
  background-color: rgba(255, 255, 255, 0.9);
  width: 80px;
  /* 円の幅 */
  height: 80px;
  /* 円の高さ */
  top: -40px;
  /* 円の高さの半分 */
  left: -40px;
  /* 円の幅の半分 */
}
.stalker.stalker.js-hover:after {
  content: 'CLICK';
}
@media (max-width: 798px) {
  .stalker {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
