@charset "UTF-8";
/* レスポンシブスタイリング */
/* =============================================
全体のサイズ
============================================= */
body {
  margin: 0;
}

.br-on br {
  display: none;
}

/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .project-wrap {
    padding-top: 50px;
  }
  section {
    width: 100%;
    padding: 60px 0;
  }
  .container {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  h2 {
    margin: 0;
  }
  .section-003,
  .section-005 {
    background: #f6f3eb;
  }
  .br-none br {
    display: none;
  }
  .br-on br {
    display: inline;
  }
}
/* =============================================
header
============================================= */
header {
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(5, 0, 1, 0.1);
  padding: 15px;
}
header * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7em;
  box-sizing: border-box;
}
header .header-logo {
  display: inline-block;
  padding: 5px;
}
header .header-logo img {
  width: 70px;
}

.header-menu {
  display: none;
}

#menu-links {
  display: none;
  /* 初期状態ではメニュー非表示 */
}

/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-menu {
    display: inline-block;
    width: 70%;
  }
  header .burger-icon {
    cursor: pointer;
    text-align: right;
  }
  header .bar {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 6px 0 6px auto;
    transition: 0.4s;
  }
  header .bi-list {
    font-size: 2.5em;
    font-weight: bold;
    color: #393939;
    display: inline-block;
    transition: 0.4s;
  }
  header #menu-links {
    flex-direction: column;
    position: absolute;
    top: 55px;
    /* メニューの表示位置を調整 */
    left: 0;
    background-color: rgba(249, 249, 249, 0.8705882353);
    width: 100%;
  }
  header .menu-links {
    text-align: center;
    font-weight: bold;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  header .menu-links a {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.3s;
  }
}
/* =============================================
見出し
============================================= */
.h3-sp {
  display: none !important;
}

@media only screen and (max-width: 960px) {
  .h3-pc {
    display: none !important;
  }
  .h3-sp {
    display: inline-block !important;
  }
}
/* =============================================
メインビジュアル
============================================= */
.main-visual__title-sp {
  display: none;
}

/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .main-visual__title {
    display: none;
  }
  .main-visual__title-sp {
    display: block;
  }
  .main-visual {
    background: #343ced;
  }
  .main-visual-flex {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-visual__logo,
  .text_bg {
    text-align: center;
    margin: 0 auto;
  }
  .main-visual__main,
  .main-visual__movie {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .main-visual__main .main-visual__main,
  .main-visual__movie .main-visual__main {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .main-visual__main p br,
  .main-visual__movie p br {
    display: none;
  }
  .main-visual__main p.text,
  .main-visual__movie p.text {
    display: block !important;
  }
  .movie-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .movie-wrap img {
    width: 100%;
  }
  .button-movie-wrap {
    position: static;
    text-align: left;
  }
  .button-movie {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
/* =============================================
ページ内リンク
============================================= */
/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .page-link-wrap {
    display: none;
  }
}
/* =============================================
スライダー
======================================
/*------ スライダー画像 ------*/
@media only screen and (max-width: 960px) {
  .slider img {
    width: 80%;
  }
}
/* =============================================
横並びコンテナー
============================================= */
@media only screen and (max-width: 960px) {
  .container-flex {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .container-flex__item {
    width: 100%;
    margin-top: 0;
  }
  .container-flex__item img {
    display: block;
    margin: 0 auto;
    width: 90%;
  }
  .reverse-flex {
    margin-top: 0;
  }
  .reverse-flex .container-flex__item {
    margin-top: 0px;
  }
}
/* =============================================
動画area
============================================= */
@media only screen and (max-width: 960px) {
  .panopto-area {
    margin-top: 20px;
    text-align: center;
  }
  .panopto-area iframe {
    width: 768px;
    height: 415px;
    margin: 0 auto;
  }
}
/* スマートフォンサイズ以下の場合 */
@media only screen and (max-width: 480px) {
  iframe {
    width: 480px;
    height: 260px;
    margin: 0 auto;
  }
}
/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .panopto-area-sp {
    display: block;
  }
  .panopto-area-sp img {
    width: 100%;
  }
  .panopto-area iframe {
    display: none;
  }
}
/* =============================================
課題
============================================= */
/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .theme-flex {
    flex-direction: column;
  }
  .theme-flex__img {
    width: 100%;
  }
  .theme-flex__img img {
    width: 40%;
  }
  .theme-flex__item {
    width: 100%;
  }
}
/* スマートフォンサイズ以下の場合 */
/* =============================================
製品紹介
============================================= */
/* タブレットサイズ以下の場合 */
@media only screen and (max-width: 960px) {
  .product-info__list {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .product-info-flex {
    justify-content: space-between;
    flex-direction: column;
    margin-top: 30px;
  }
  .product-info-flex__text {
    width: 100%;
  }
  .product-info-flex__item {
    width: 100%;
  }
  .product-info-flex__item img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .button-contact {
    margin-right: auto;
    margin-left: auto;
  }
}/*# sourceMappingURL=glean-np-rwd.css.map */