@charset "UTF-8";
/* ----------------------
全体共通
----------------------*/
html {
  font-size: 100px; }

article {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/pc_bk.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

@media screen and (max-width: 1024px) {
  article.flow {
    ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center; } }
.center {
  text-align: center; }

.flow {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.5s ease-out; }

.fade-up.show {
  opacity: 1;
  transform: translateY(0); }

/* ----------------------
BUTTON
----------------------*/
.btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }
  .btn a {
    display: block;
    width: 100%; }
  .btn a:hover {
    opacity: 0.7; }

.scroll__btn {
  position: fixed;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 374px;
  opacity: 0;
  transition: opacity 0.5s ease; }

@media screen and (max-width: 375px) {
  .scroll__btn {
    width: 95%; } }
.scroll__btn.show {
  opacity: 1; }

/* ----------------------
メイン
----------------------*/
.pc_left {
  width: calc((100% - 375px) / 2);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .pc_left figure {
    width: 154px; }
  .pc_left p {
    font-family: "游ゴシック","Yu Gothic",'Noto Sans Japanese',sans-serif;
    font-weight: bold;
    font-size: 0.22rem;
    line-height: 1.545;
    letter-spacing: 0.12em;
    color: #212121;
    text-align: center;
    margin-top: 20px; }

.scroll-container {
  width: 414px;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  position: relative; }
  .scroll-container p {
    font-family: "游ゴシック","Yu Gothic",'Noto Sans Japanese',sans-serif;
    font-weight: bold;
    font-size: 0.14rem;
    line-height: 1.571;
    letter-spacing: 0.025em;
    color: #0c9ee4;
    text-align: left;
    width: 375px;
    margin: 0 auto 70px; }
  @media screen and (max-width: 414px) {
    .scroll-container p {
      width: 95%; } }

.scroll-container::-webkit-scrollbar {
  display: none; }

@supports (-webkit-overflow-scrolling: touch) {
  @media (max-width: 767px) {
    .scroll-container {
      -webkit-overflow-scrolling: touch; } } }
.pc_right {
  width: calc((100% - 375px) / 2);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }
  .pc_right .pc_right_wrap {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    ms-flex-align: flex-start;
    -webkit-box-align: flex-start;
    align-items: flex-start;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .pc_right .pc_right_wrap .pc__nav {
      padding-left: 36px;
      margin-bottom: 40px;
      margin-left: 10px; }
      .pc_right .pc_right_wrap .pc__nav li {
        position: relative;
        font-family: "游ゴシック","Yu Gothic",'Noto Sans Japanese',sans-serif;
        font-weight: bold;
        font-size: 0.2rem;
        line-height: 1.4;
        letter-spacing: 0.08em;
        color: #212121;
        text-align: left;
        margin-bottom: 20px; }
        .pc_right .pc_right_wrap .pc__nav li a {
          transition: all .3s; }
        .pc_right .pc_right_wrap .pc__nav li a:hover {
          color: #0c9ee4; }
      .pc_right .pc_right_wrap .pc__nav li:last-of-type {
        margin-bottom: 0; }
      .pc_right .pc_right_wrap .pc__nav li::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 22px;
        background-color: #212121;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: -36px;
        transition: all .3s; }
      .pc_right .pc_right_wrap .pc__nav li:hover::before {
        background-color: #0c9ee4; }
    .pc_right .pc_right_wrap .pc__btn {
      width: 335px; }

/* ----------------------
表示非表示
----------------------*/
@media screen and (max-width: 1024px) {
  .pc_right, .pc_left {
    display: none; } }

/*# sourceMappingURL=common.css.map */

/* ----------------------
20251021追記　左右を固定
----------------------*/
.pc_left,
.pc_right {
  height: 100vh;
}