@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: left;
  word-break: break-word;
}

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;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

*, *:after, *:before {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .l-container {
    overflow: hidden;
  }
}

.p-mission::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: fixed;
  background-image: url("../img/index/bg_mission.png");
  top: 0;
  left: 0;
  z-index: -3;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.4rem;
    line-height: 2;
  }
}

body.is-fixed {
  overflow-y: hidden;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 144rem;
    position: relative;
  }
}
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 128rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
.l-wrap.-l {
  max-width: 136rem;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* セクションタイトル
--------------------------------*/
.c-sec-box {
  width: 48rem;
}
@media screen and (max-width: 767px) {
  .c-sec-box {
    width: 100%;
  }
}
.c-sec-box .c-secttl {
  font-size: 3.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-sec-box .c-secttl {
    font-size: 2.6rem;
  }
}
.c-sec-box .c-sectext {
  margin-top: 3.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* youtube
--------------------------------*/
.c-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  width: 100%;
  min-width: 144rem;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    min-width: 100%;
  }
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 4rem 0;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding: 2rem 2rem 0;
  }
}
.l-header_inner .logo {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .l-header_inner .logo {
    width: 17.8rem;
  }
}
.l-header_inner .logo .white {
  display: none;
}
.l-header_inner .btn_link {
  display: inline-block;
  width: 17.6rem;
  height: 5.4rem;
  background-color: rgba(30, 30, 30, 0.8);
  position: relative;
  border: 1px solid #969696;
  transition: color 0.3s ease;
  font-family: "Bellefair", serif;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header_inner .btn_link {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.l-header_inner .btn_link::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.l-header_inner .btn_link span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: 0.3s;
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .l-header_inner .btn_link span {
    margin-top: 0;
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header_inner .btn_link:hover {
    color: #000;
  }
  .l-header_inner .btn_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .l-header_inner .btn_link:hover span {
    color: #000;
  }
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  padding: 16rem 0 8rem;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 12rem 0 8rem;
  }
}
.l-footer * {
  color: #fff;
}
.l-footer .block01 .flex {
  margin-top: 5rem;
  display: flex;
  gap: 12rem;
}
@media screen and (max-width: 767px) {
  .l-footer .block01 .flex {
    flex-direction: column;
    gap: 4.5rem;
  }
}
.l-footer .block01 .flex .title {
  font-family: "Bellefair", serif;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer .block01 .flex .title {
    font-size: 2.8rem;
  }
}
.l-footer .block01 .flex dl .item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer .block01 .flex dl .item {
    margin-top: 0.2rem;
  }
}
.l-footer .block01 .flex dl .item dt {
  width: 9rem;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
.l-footer .block01 .flex dl .item dd {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  flex: 1;
  text-indent: -1em;
  padding-left: 1em;
}
.l-footer .block02 {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  .l-footer .block02 {
    margin-top: 11rem;
  }
}
.l-footer .block02 .en-title {
  font-size: 11.4rem;
  text-align: center;
  font-family: "Bellefair", serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-footer .block02 .en-title {
    font-size: 7rem;
    line-height: 0.9;
  }
}
.l-footer .block02 .flex {
  margin-top: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12rem;
}
@media screen and (max-width: 767px) {
  .l-footer .block02 .flex {
    margin-top: 5rem;
    flex-direction: column-reverse;
    gap: 6rem;
  }
}
.l-footer .block02 .flex .text-box .logo {
  width: 31.7rem;
}
.l-footer .block02 .flex .text-box .info {
  margin-top: 3rem;
}
.l-footer .block02 .flex .text-box .info .text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.l-footer .block02 .flex .text-box .copyright {
  margin-top: 2.5rem;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}
.l-footer .block02 .flex .btn {
  width: 100%;
}
.l-footer .block02 .flex .btn_link {
  display: inline-block;
  width: 84.3rem;
  height: 17.7rem;
  position: relative;
  border: 1px solid #fff;
  transition: color 0.3s ease;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer .block02 .flex .btn_link {
    width: 100%;
    height: 10rem;
    font-size: 2rem;
  }
}
.l-footer .block02 .flex .btn_link::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.l-footer .block02 .flex .btn_link span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: 0.3s;
  margin-top: 0.2rem;
}
@media screen and (min-width: 768px) {
  .l-footer .block02 .flex .btn_link:hover {
    color: #000;
  }
  .l-footer .block02 .flex .btn_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .l-footer .block02 .flex .btn_link:hover span {
    color: #000;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* ------------------------------
    フェードインアニメーション
------------------------------ */
.fade-box {
  opacity: 0;
}

.fade-in-box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fade-img {
  transform: scale(0.2);
}
.fade-img.is-active {
  transform: scale(1);
  animation-name: fadeImageAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeImageAnime {
  from {
    transform: scale(0.2);
  }
  to {
    transform: scale(1);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}/*# sourceMappingURL=common.css.map */