@charset "UTF-8";
/* ----------------------------------------------------
	mixin
---------------------------------------------------- */
/*----- メディアクエリ -----*/
/* 使い方
@include mq(){
  font-size: rem(16);
}
@include mq(375px){
  font-size: rem(16);
}
*/
/*----- font -----*/
/* 使い方
font-family: $noto;
*/
/*----- px変換 -----*/
/* 使い方
font-size: rem(16);
font-size: vw(16);
font-size: vw(16, 375); // ブラウザ幅が375pxのデザインデータの場合
line-height: lh(16,28);
letter-spacing: ls(50);
*/
/* リセットCSS
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */
/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.09375vw;
  line-height: 1.7857142857;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #000;
}

a {
  text-decoration: none;
  color: #505050;
  outline: none;
}

a:hover {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
}

#wrpper {
  overflow: hidden;
}

/*l-header
---------------------------------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 6;
  width: 90px;
  top: 20px;
  left: 30px;
  opacity: 0;
  transition: 0.5s;
}
.l-header.is-show {
  opacity: 1;
}
.l-header .l-header__logo img {
  width: 100%;
}

.menu-btn {
  opacity: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  z-index: 8;
  right: 20px;
  top: 20px;
  transition: 0.5s;
}
.menu-btn.is-show {
  opacity: 1;
}
.menu-btn .line {
  position: absolute;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-btn .line.top {
  top: 19px;
}
.menu-btn .line.bottom {
  top: 30px;
}

/* クリック後の変化 */
.menu-btn.active .line.top {
  top: 25px;
}

.menu-btn.active .line.bottom {
  top: 25px;
}

.progress-bar {
  opacity: 0;
  width: 1px;
  height: 200px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto 0;
  z-index: 2;
  mix-blend-mode: difference;
  transition: 0.5s;
}
.progress-bar.is-show {
  opacity: 1;
}
.progress-bar span {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  background: #fff;
  z-index: 199;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
}

/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 6;
  height: 100vh;
  background: #394B41;
  width: 400px;
  transition: 0.5s;
}
.l-gNav.is-open {
  right: 0;
}
.l-gNav .l-gNav__logo {
  display: none;
}
.l-gNav .l-gNav__logo img {
  width: 100%;
}
.l-gNav .l-gNav__inner {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 9.84375vw;
}
.l-gNav .l-gNav__inner .l-gNav__list {
  margin-bottom: 110px;
}
.l-gNav .l-gNav__inner .l-gNav__list li {
  margin: 0 auto 40px;
  width: 150px;
}
.l-gNav .l-gNav__inner .l-gNav__list li:last-child {
  margin: 0 auto;
}
.l-gNav .l-gNav__inner .l-gNav__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.l-gNav .l-gNav__inner .l-gNav__list li a .lang-en {
  font-size: 1.8rem;
  font-family: "optima-lt-pro", sans-serif;
}
.l-gNav .l-gNav__inner .l-gNav__list li a .lang-jp {
  font-size: 1rem;
  font-family: "Sawarabi Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
}
.l-gNav .l-gNav__inner .l-gNav__button {
  width: 312px;
  margin: 0 auto;
}
.l-gNav .l-gNav__inner .l-gNav__button a {
  display: block;
  background: #fff;
  color: #394B41;
  text-align: center;
  padding: 20px 0;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  background: #150201;
  padding: 0 30px;
}
.l-footer .l-footer__inner {
  margin: 0 auto;
  padding: 20px 0;
}
.l-footer .l-footer__inner p {
  font-family: "optima-lt-pro", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}

/* ----------------------------------------------------
	utility
---------------------------------------------------- */
/*----- コンテナ幅 -----*/
.u-wrap {
  max-width: 114rem;
  padding: 0 2rem;
  margin: 0 auto;
}

/*----- spのみ表示 -----*/
.u-nopc {
  display: none;
}

/*----- pcのみ表示 -----*/
.u-nosp {
  display: inherit;
}

/*----- ホバー効果 -----*/
.u-hover--fade {
  transition: opacity 0.3s ease;
}
.u-hover--fade:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------
	c-
---------------------------------------------------- */
.c-heading {
  padding-bottom: 15px;
  margin-bottom: 50px;
  font-family: "optima-lt-pro", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  position: relative;
}
.c-heading:before {
  content: "";
  width: 50px;
  height: 1px;
  margin-left: -25px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
}

@keyframes fadeUpShow {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fade-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: transform, opacity;
}

.fade-up.is-show {
  animation: fadeUpShow 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98) forwards;
}

/* ----------------------------------------------------
	loading-bg
---------------------------------------------------- */
.loading-bg {
  width: 100%;
  height: 100%;
  background: #150201;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  /* 初期は静止 */
  transform: translateX(0);
}

/* アニメーション用クラス */
.loading-bg.animate {
  animation: slideOut 2s forwards cubic-bezier(0.5, 0, 0.1, 1);
}

@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ----------------------------------------------------
	p-fv
---------------------------------------------------- */
.p-fv {
  position: relative;
}
.p-fv:before {
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: solid 10px #394b41;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-fv .p-fv__center {
  display: none;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
.p-fv .p-fv__center .p-fv__logo {
  width: 11.71875vw;
  margin: 0 auto 1.953125vw;
  line-height: 1;
}
.p-fv .p-fv__center .p-fv__logo img {
  width: 100%;
}
.p-fv .p-fv__center .p-fv__lead {
  font-family: "Sawarabi Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1.875vw;
}
.p-fv .p-fv__center .p-fv__lead span {
  font-family: "optima-lt-pro", sans-serif;
}
.p-fv .p-fv__slider {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
}
.p-fv .p-fv__slider .p-fv__pic {
  width: 100%;
  height: 100svh;
  position: relative;
}
.p-fv .p-fv__slider .p-fv__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
    /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/* ----------------------------------------------------
	p-concept
---------------------------------------------------- */
.p-concept {
  padding: 160px 0;
  background: #777d7c;
  color: #fff;
}
.p-concept .p-concept__inner {
  max-width: 1052px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
.p-concept .p-concept__inner .p-concept__content {
  width: 42%;
  max-width: 400px;
}
.p-concept .p-concept__inner .p-concept__content .c-heading {
  text-align: left;
}
.p-concept .p-concept__inner .p-concept__content .c-heading::before {
  margin: 0;
  left: 0;
}
.p-concept .p-concept__inner .p-concept__content .p-concept__heading {
  margin-bottom: 50px;
  font-family: "Sawarabi Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 3.2rem;
  line-height: 1.5625;
}
.p-concept .p-concept__inner .p-concept__content .p-concept__heading span {
  font-family: "optima-lt-pro", sans-serif;
}
.p-concept .p-concept__inner .p-concept__content .p-concept__block .p-concept__lead {
  padding-top: 25px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.p-concept .p-concept__inner .p-concept__content .p-concept__block .p-concept__lead:first-child {
  padding: 0;
}
.p-concept .p-concept__img {
  width: 50%;
  max-width: 500px;
  position: absolute;
  top: -100px;
  right: -84px;
}
.p-concept .p-concept__img img {
  width: 100%;
}

/* ----------------------------------------------------
	p-message
---------------------------------------------------- */
.p-message {
  padding: 120px 0;
  background: url("../img/bg_message_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.p-message .p-message__content {
  padding: 0 30px;
  color: #fff;
}
.p-message .p-message__content .p-message__block {
  max-width: 600px;
  margin: 0 auto;
}
.p-message .p-message__content .p-message__block .p-message__heading {
  margin-bottom: 40px;
  font-family: "Sawarabi Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
}
.p-message .p-message__content .p-message__block .p-message__heading span {
  display: block;
  width: 90px;
  padding: 5px 0;
  margin: 0 auto 20px;
  border: solid 1px #fff;
  font-family: "optima-lt-pro", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.p-message .p-message__content .p-message__block .p-message__lead {
  padding-top: 25px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  text-align: center;
}
.p-message .p-message__content .p-message__block .p-message__lead:first-child {
  padding: 0;
}

/* ----------------------------------------------------
	p-sec
---------------------------------------------------- */
.p-sec {
  height: 23.4375vw;
  background: url("../img/pic_section_pc.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

/* ----------------------------------------------------
	p-register
---------------------------------------------------- */
.p-register {
  padding: 120px 0;
  background: url("../img/bg_register_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #000;
}
.p-register .c-heading {
  color: #000;
}
.p-register .c-heading:before {
  background: #000;
}
.p-register .p-register__content {
  padding: 0 30px;
}
.p-register .p-register__content .p-register__logo {
  width: 150px;
  margin: 0 auto 60px;
}
.p-register .p-register__content .p-register__logo img {
  width: 100%;
}
.p-register .p-register__content .p-register__block {
  text-align: center;
}
.p-register .p-register__content .p-register__heading {
  margin-bottom: 30px;
  font-family: "Sawarabi Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 3.2rem;
  line-height: 0.9375;
  text-align: center;
}
.p-register .p-register__content .p-register__lead {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  text-align: center;
}
.p-register .p-register__content .p-register__graph {
  max-width: 770px;
  margin: 50px auto 60px;
}
.p-register .p-register__content .p-register__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-register .p-register__content .p-register__flex .box {
  width: 32%;
  max-width: 500px;
  box-shadow: 0 0 10px #a1a1a1;
}
.p-register .p-register__content .p-register__flex .box img {
  width: 100%;
}
.p-register .p-register__content .p-register__button {
  width: 312px;
  margin: 0 auto;
}
.p-register .p-register__content .p-register__button a {
  display: block;
  padding: 20px 0;
  background: #394b41;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
}
.p-register .p-register__content .p-register__button a:hover {
  background: #000;
}

/* ----------------------------------------------------
	p-company
---------------------------------------------------- */
.p-company {
  padding: 120px 0;
  background: #150201;
  color: #fff;
}
.p-company .p-company__content {
  max-width: 760px;
  padding: 0 30px;
  margin: 0 auto;
}
.p-company .p-company__content .p-company__table {
  margin: 60px 0 0;
  font-size: 1.4rem;
  line-height: 2.1428571429;
}
.p-company .p-company__content .p-company__table th {
  vertical-align: top;
  width: 200px;
  text-align: left;
}
.p-company .p-company__content .p-company__table td {
  padding: 0 0 30px;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
  .menu-btn {
    width: 40px;
    height: 40px;
  }
  .menu-btn .line {
    width: 15px;
  }
  .menu-btn .line.top {
    top: 15px;
  }
  .menu-btn .line.bottom {
    top: 23px;
  }
  .menu-btn.active .line.top {
    top: 19px;
  }
  .menu-btn.active .line.bottom {
    top: 19px;
  }
  .progress-bar {
    right: 20px;
  }
  .l-gNav {
    width: 100%;
  }
  .l-gNav .l-gNav__logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 30px;
    width: 100px;
  }
  .l-gNav .l-gNav__inner {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-gNav .l-gNav__inner .l-gNav__list {
    margin-bottom: 100px;
  }
  .l-gNav .l-gNav__inner .l-gNav__list li {
    margin: 0 auto 30px;
    width: 140px;
  }
  .l-gNav .l-gNav__inner .l-gNav__list li a .lang-en {
    font-size: 4.2666666667vw;
  }
  .l-gNav .l-gNav__inner .l-gNav__button {
    width: 68vw;
  }
  .l-gNav .l-gNav__inner .l-gNav__button a {
    font-size: 3.4666666667vw;
    padding: 20px 0;
  }
  .l-footer .l-footer__inner {
    padding: 10px 0 25px;
    max-width: inherit;
  }
  .l-footer .l-footer__inner p {
    font-size: 1rem;
  }
  .l-footer {
    padding: 0 10px;
  }
  .u-wrap {
    padding: 0 1.5625vw;
  }
  .u-nopc {
    display: inherit;
  }
  .u-nosp {
    display: none;
  }
  .u-hover--fade {
    transition: none;
  }
  .u-hover--fade:hover {
    opacity: 1;
  }
  .c-heading {
    font-size: 1.6rem;
  }
  .c-heading:before {
    width: 40px;
    margin-left: -20px;
  }
  .p-fv:before {
    border-bottom: none;
  }
  .p-fv .p-fv__center .p-fv__logo {
    width: 29.3333333333vw;
    margin: 0 auto 6.6666666667vw;
  }
  .p-fv .p-fv__center .p-fv__lead {
    font-size: 4.8vw;
  }
  .p-concept {
    padding: 80px 0 20px;
  }
  .p-concept .p-concept__inner {
    width: 100%;
    padding: 0;
  }
  .p-concept .p-concept__inner .p-concept__content {
    width: 100%;
    max-width: inherit;
    padding: 0 30px;
    text-align: center;
  }
  .p-concept .p-concept__inner .p-concept__content .c-heading {
    text-align: center;
  }
  .p-concept .p-concept__inner .p-concept__content .c-heading::before {
    margin-left: -20px;
    left: 50%;
  }
  .p-concept .p-concept__inner .p-concept__content .p-concept__heading {
    margin-bottom: 60px;
    font-size: 2.6rem;
    line-height: 1.7307692308;
  }
  .p-concept .p-concept__inner .p-concept__content .p-concept__block .p-concept__lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
  .p-concept .p-concept__img {
    width: calc(100% - 30px);
    margin: 50px 0 0 auto;
    position: inherit;
    top: inherit;
    right: inherit;
  }
  .p-message {
    padding: 100px 0;
    background: url("../img/bg_message_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .p-message .p-message__content .p-message__block {
    width: 100%;
  }
  .p-message .p-message__content .p-message__block .p-message__heading {
    margin-bottom: 40px;
    font-size: 2.6rem;
  }
  .p-message .p-message__content .p-message__block .p-message__heading span {
    font-size: 1.2rem;
  }
  .p-message .p-message__content .p-message__block .p-message__lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
  .p-sec {
    height: 53.3333333333vw;
    background: url("../img/pic_section_sp.jpg") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .p-register {
    padding: 100px 0;
    background: url("../img/bg_register_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .p-register .p-register__content .p-register__logo {
    width: 100px;
  }
  .p-register .p-register__content .p-register__heading {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
  .p-register .p-register__content .p-register__lead {
    display: block;
    font-size: 1.3rem;
    line-height: 1.9230769231;
  }
  .p-register .p-register__content .p-register__graph {
    max-width: 250px;
    margin: 40px auto 50px;
  }
  .p-register .p-register__content .p-register__flex .box {
    width: 100%;
    margin-top: 10px;
  }
  .p-register .p-register__content .p-register__flex .box:first-child {
    margin-top: 0;
  }
  .p-register .p-register__content .p-register__button {
    width: 256px;
  }
  .p-register .p-register__content .p-register__button a {
    font-size: 1.3rem;
  }
  .p-company {
    padding: 100px 0;
  }
  .p-company .p-company__content {
    max-width: inherit;
  }
  .p-company .p-company__content .p-company__table tr:last-child td {
    padding-bottom: 0;
  }
  .p-company .p-company__content .p-company__table th {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1;
  }
  .p-company .p-company__content .p-company__table td {
    display: block;
    font-size: 1.1rem;
    line-height: 1.6363636364;
  }
}