@charset "UTF-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: white;
  font-family: "TBUD明朝 M";
  font-weight: 300;
  font-style: normal;
  height: 100%;
  overflow: hidden;
}

/* ローダー */
#loader {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 9999;
  transition: opacity 1s ease;
  height: 100vh;
  width: 100vw;
}

#loader-svg {
  width: 300px;
  height: 200px;
}

#outer-frame {
  transform-origin: center;
  transform: scale(0.1);
  opacity: 0;
}

#outer-frame.pop-frame {
  animation: popFrame 0.3s forwards;
}

@keyframes popFrame {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#moving-line {
  opacity: 0;
}

/* メインコンテンツ */
@media screen and (min-width: 920px) {
  .article__mobile {
    display: none;
  }

  #main-content,
  #about-content {
    padding: 3rem;
    text-align: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
  }

  #main-content .yajirusi,
  #about-content .yajirusi {
    display: none;
  }

  #main-content .copywrite_mobile,
  #about-content .copywrite_mobile {
    display: none;
  }

  #main-content .wrap__left,
  #about-content .wrap__left {
    flex: 0 0 25%;
    min-width: 335px;
    height: auto;
    z-index: 9;
  }

  #main-content .left,
  #about-content .left {
    position: fixed;
    top: 0;
    flex: 0 0 25%;
    min-width: 335px;
    height: 100vh;
    z-index: 10;
  }

  #main-content .left .left-inner,
  #about-content .left .left-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto;
    gap: 10%;
    margin-right: 2rem;
  }

  #main-content .left .left-inner .left__logo,
  #about-content .left .left-inner .left__logo {
    width: 80%;
    height: auto;
    min-width: 250px;
  }

  #main-content .left .left-inner .left__logo img,
  #about-content .left .left-inner .left__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  #main-content .left .left-inner .left__logo_w,
  #about-content .left .left-inner .left__logo_w {
    display: none;
  }

  #main-content .left .left-inner .text__logo,
  #about-content .left .left-inner .text__logo {
    width: 80%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 25%;
  }

  #main-content .left .left-inner .text__logo #text__logo__custom_1,
  #about-content .left .left-inner .text__logo #text__logo__custom_1 {
    transform: translate(8px);
  }

  #main-content .left .left-inner .text__logo #text__logo__custom_3,
  #about-content .left .left-inner .text__logo #text__logo__custom_3 {
    transform: translate(2px);
  }

  #main-content .left .left-inner .text__logo #text__logo__custom_4,
  #about-content .left .left-inner .text__logo #text__logo__custom_4 {
    transform: translate(2px);
  }

  #main-content .right-about,
  #about-content .right-about {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #main-content .right-about div,
  #about-content .right-about div {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 70%;
  }

  #main-content .right-about div img,
  #about-content .right-about div img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  #main-content .eyecatch,
  #about-content .eyecatch {
    position: relative;
    height: 100%;
    width: 100%;
  }

  #main-content .eyecatch .copywrite_pc,
  #about-content .eyecatch .copywrite_pc {
    position: absolute;
    z-index: 999;
    top: 2%;
    right: 2%;
  }

  #main-content .eyecatch .copywrite_pc img,
  #about-content .eyecatch .copywrite_pc img {
    width: 100%;
    height: auto;
  }

  #main-content .eyecatch .img_slide,
  #about-content .eyecatch .img_slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: opacity 1000ms ease;
  }

  #main-content .article,
  #about-content .article {
    display: none;
    opacity: 0;
    transition: opacity 1000ms ease;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    flex-direction: column;
  }

  #main-content .article .news__topics,
  #about-content .article .news__topics {
    display: none;
    position: relative;
    flex-direction: column;
    text-align: left;
    margin-left: 1.5rem;
    padding-left: 3.5rem;
    border-left: 1px solid black;
    height: 40vh;
    width: auto;
  }

  #main-content .article .news__topics .topics__text,
  #about-content .article .news__topics .topics__text {
    display: flex;
    flex-direction: column;
  }

  #main-content .article .news__topics .topics__text p,
  #about-content .article .news__topics .topics__text p {
    text-align: left;
    font-size: 20px;
  }

  #main-content .article .news__topics .news_topics_back,
  #about-content .article .news__topics .news_topics_back {
    position: absolute;
    right: 5rem;
    bottom: 5rem;
    color: white;
    background-color: #333;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 30px;
    border: #333 solid 1px;
    border-radius: 5px;
    padding: 3px 8px;
  }

  #main-content .article .attention,
  #about-content .article .attention {
    align-items: left;
    text-align: left;
    margin-bottom: 3rem;
  }

  #main-content .article .article__title,
  #about-content .article .article__title {
    width: 100%;
    height: auto;
    margin: 3rem 0;
  }

  #main-content .article #img__origin,
  #about-content .article #img__origin {
    height: 50%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #main-content .article #img__sora,
  #about-content .article #img__sora {
    height: 400px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 3rem;
  }

  #main-content .article #img__camera,
  #about-content .article #img__camera {
    height: 400px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 3rem;
  }

  #main-content .article #img__hoshi,
  #about-content .article #img__hoshi {
    height: 500px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 3rem;
  }

  #main-content .article #svg__abouttext,
  #about-content .article #svg__abouttext {
    margin: 5rem 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  #main-content .article .news__contain,
  #about-content .article .news__contain {
    height: -moz-fit-content;
    height: fit-content;
    width: auto;
    display: flex;
    flex-direction: column;
  }

  #main-content .article .news__contain .news,
  #about-content .article .news__contain .news {
    display: flex;
    gap: 1rem;
    height: 100%;
    margin-bottom: 3rem;
  }

  #main-content .article .news__contain .news img,
  #about-content .article .news__contain .news img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  #main-content .article .news__contain .news .news__titles,
  #about-content .article .news__contain .news .news__titles {
    text-align: left;
    flex-direction: column;
  }

  #main-content .article .news__contain .news .news__titles .news__title,
  #about-content .article .news__contain .news .news__titles .news__title {
    margin-bottom: 0.5rem;
  }

  #main-content .article .news__contain .news .news__titles .titles__icon,
  #about-content .article .news__contain .news .news__titles .titles__icon {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  #main-content .article .news__contain .news .news__titles .titles__icon div,
  #about-content .article .news__contain .news .news__titles .titles__icon div {
    display: flex;
    align-items: center;
  }

  #main-content .article .news__contain .news .news__titles a,
  #about-content .article .news__contain .news .news__titles a {
    font-size: 20px;
    text-decoration: underline;
  }

  #main-content .article .about__text,
  #about-content .article .about__text {
    width: 100%;
    margin: 2rem 0;
  }

  #main-content .article .about__text p,
  #about-content .article .about__text p {
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
    line-height: 2.5rem;
    font-size: 1.15rem;
  }

  #main-content .article .contact__text,
  #about-content .article .contact__text {
    width: 100%;
    text-align: left;
  }

  #main-content .article .contact__text p,
  #about-content .article .contact__text p {
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
    line-height: 2.5rem;
    font-size: 1.15rem;
  }
}

body.loaded #main-content {
  display: flex;
}

@media screen and (max-width: 919px) {
  #main-content {
    display: flex;
    height: 100vh;
    width: 100vw;
    padding: 1rem;
    position: relative;
  }

  #main-content .copywrite_mobile {
    position: absolute;
    bottom: 15%;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
  }

  #main-content .copywrite_mobile img {
    width: 100%;
    height: auto;
  }

  #main-content .yajirusi {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 2%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    content: "";
    z-index: 20;
  }

  #main-content .left {
    position: absolute;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    color: white;
    top: 30px;
    right: 30px;
    z-index: 10;
  }

  #main-content .left .left-inner {
    display: flex;
    flex-direction: column;
    align-items: end;
  }

  #main-content .left .left-inner .left__logo,
  #main-content .left .left-inner .text__logo {
    display: none;
  }

  #main-content .left .left-inner .left__logo_w {
    width: 100%;
    height: auto;
    margin-bottom: 40%;
  }

  #main-content .left .left-inner .text__logo_w {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: end;
    flex-direction: column;
  }

  #main-content .left .left-inner .text__logo_w .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 8px;
  }

  #main-content .article {
    display: none;
  }

  #main-content .eyecatch {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  #main-content .eyecatch .copywrite_pc {
    display: none;
  }

  #main-content .eyecatch img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: opacity 1000ms ease;
  }

  .article__mobile {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .article__mobile .mobile__block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .article__mobile .mobile__block .contact__text {
    width: 100%;
    text-align: left;
  }

  .article__mobile .mobile__block .contact__text p {
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
    line-height: 1.5rem;
    font-size: 1.15rem;
  }

  .article__mobile .title__mobile {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid black;
  }

  .article__mobile #title__news__mobile {
    margin-bottom: 1.5rem;
  }

  .article__mobile .about__text__mobile {
    width: 100%;
    text-align: left;
    padding: 0 1rem;
  }

  .article__mobile .about__text__mobile p {
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
    line-height: 1.5rem;
    font-size: 1.15rem;
  }

  .article__mobile .news__contain {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 1rem;
  }

  .article__mobile .news__contain .news {
    display: flex;
    align-items: center;
  }

  .article__mobile .news__contain .news img {
    margin-left: 1rem;
    margin-right: 1.5rem;
  }

  .article__mobile .news__contain .news .news__titles .news__title {
    font-weight: 500;
    text-align: left;
  }
}

.mobile__newspage {
  width: 100vw;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile__newspage .mobile__newspage__logo {
  position: relative;
  margin-bottom: 1rem;
}

.mobile__newspage .mobile__newspage__logo .mobile__newspage__eye {
  width: auto;
  height: 100px;
}

.mobile__newspage .mobile__newspage__logo .mobile__newspage__eye img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mobile__newspage .mobile__newspage__logo .mobile__newspage__svg {
  position: absolute;
  width: 90%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile__newspage #title__news__mobile__contain {
  border-bottom: #333 solid 1px;
  max-width: 90px;
  padding: 5px;
}

.mobile__newspage #title__news__mobile__contain #title__news__mobile {
  max-width: 100%;
  height: auto;
}

.mobile__newspage .news__contain {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.mobile__newspage .news__contain .news {
  display: flex;
  align-items: center;
  border: #333 solid 1px;
  border-radius: 5px;
  padding: 10px;
}

.mobile__newspage .news__contain .news .news__icon {
  margin-left: 1rem;
  margin-right: 1.5rem;
}

.mobile__newspage .news__contain .news .news__titles .news__title {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 1.5rem;
}

.mobile__newspage .news__contain .news .news__titles .titles__icon {
  display: flex;
  flex-direction: column;
}

.mobile__newspage .news__contain .news .news__titles .titles__icon div {
  display: flex;
}

.mobile__newspage .news__contain .news .news__titles .titles__icon div img {
  margin-right: 0.5rem;
}

#main-content h1 {
  font-size: 2rem;
  color: black;
}

#main-content p {
  color: #333;
}

body.loaded {
  overflow: auto;
}

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