@charset "UTF-8";
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

:root {
  --color-primary: #4d9ef5;
  --color-sub:#3d76d5;
  --color-grey-light-1:#faf9f9;
  --color-grey-light-2:#f4f2f2;
  --color-grey-light-3:#f0eeee;
  --color-grey-light-4:#ccc;
  --color-grey-dark-1:#333;
  --color-grey-dark-2:#777;
  --color-grey-dark-3:#999;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0,.3);
  --shadow-light:0 2rem 5rem rgba(0,0,0,.06);
  -line: 1px solid var(--color-grey-light-2);
  --pb-smaller:4em;
  --pb-smallest:2em; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  /*font-size:62.5%;*/
  /* 10/16 = 0.625  > 10px = 10rem */ }

body {
  box-sizing: border-box; }

/* back-to-top 機能 */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 30px; }

.back-to-top a {
  width: 40px;
  height: 40px;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 40px;
  background-color: #333;
  text-align: center;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.back-to-top a:hover {
  opacity: 10;
  -moz-opacity: 10;
  filter: alpha(opacity=100);
  background-color: #5381ac; }

/* 001_02 table 水平スクロール */
table {
  margin: auto;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
  /*width: fit-content;*/
  max-width: 1 1rem; }

table td {
  white-space: nowrap;
  width: 100%; }

/* 横スクロールバー */
.table_wrap {
  overflow-x: scroll;
  /* border-left:3px solid #efefef;
     border-top:3px solid #efefef; */ }

.table_wrap::-webkit-scrollbar {
  height: 10px; }

/* 001_03 タイトル */
p span.title_4 {
  font-weight: normal;
  margin-top: 5rem;
  display: block; }

p {
  padding-bottom: var(--pb-smallest); }

/* /base/_typography.scss */
.heading-primary {
  color: #fff;
  text-transform: uppercase;
  /*animation 時の余分な動きを削除*/
  backface-visibility: hidden; }
  .heading-primary--main {
    display: block;
    font-size: 3.9rem;
    font-weight: 100;
    letter-spacing: 30px;
    /*animation-name: moveInLeft;
        animation-duration: 1s;
        animation-timing-function: ease-out;*/ }
    @media (max-width: 56.25em) {
      .heading-primary--main {
        font-size: 2.4rem;
        letter-spacing: .6rem; } }
    @media (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 2.4rem;
        letter-spacing: .6rem; } }
  .heading-primary--sub {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 13px;
    animation: moveInRight 1s ease-out;
    /*border:1px solid #f7f7f7;*/
    padding: .7rem 0rem 0rem .7rem; }
    @media (max-width: 56.25em) {
      .heading-primary--sub {
        font-size: 1.1rem;
        letter-spacing: 4px; } }
    @media (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: .8rem;
        letter-spacing: 4px; } }

/*font-family: 'Noto Sans JP', sans-serif; */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  padding: 3px; }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #44b6ff, #5643fa);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  .heading-secondary:hover {
    transform: shewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.u-center-text {
  text-align: center; }

.u-margin-bottom-small {
  margin-bottom: 1.2rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 3rem; } }
  @media (max-width: 75em) {
    .u-margin-bottom-medium {
      margin-bottom: 1rem; } }

.u-margin-bottom-big {
  margin-bottom: 8rem; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem; } }

.u-margin-top-big {
  margin-top: 8rem; }

.u-margin-top-huge {
  margin-top: 10rem; }

.u-padding-top-medium {
  padding-top: 2rem; }
  @media (max-width: 56.25em) {
    .u-padding-top-medium {
      padding-top: 1rem; } }

/* components/button.scss */
.btn, .btn:link, .btn:visited {
  text-decoration: none;
  font-family: 'M PLUS 1p';
  font-weight: 400;
  margin-top: 2rem;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all .2s;
  position: relative;
  font-size: 1.1rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: white;
  color: #777; }
  .btn--white::after {
    background-color: #fff; }

.koen-box {
  padding: 4px;
  border: none;
  /*font-size: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    border-radius: 3px;
    border:1px solid $color-gray-light-2;
    box-shadow: 0 .8rem .8rem rgba($color-black, .03);
    transition: transform .3s;*/ }
  .koen-box .card-title span {
    display: block;
    width: 100%;
    position: relative;
    padding: .8rem; }
  @media (max-width: 56.25em) {
    .koen-box {
      display: flex;
      box-shadow: none;
      border-top: 1px solid #eee;
      padding-top: .8rem; }
      .koen-box .card-title span {
        display: block;
        width: 100%;
        position: absolute;
        padding: 0; }
      .koen-box img {
        /*border:1px solid red;*/
        position: relative;
        margin-top: 3.5rem;
        width: 20rem; } }
  @media (max-width: 37.5em) {
    .koen-box img {
      /*border:1px solid red;*/
      position: relative;
      margin-top: 4.5rem;
      width: 11rem; } }

.tbl {
  width: 90%;
  margin: auto; }
  .tbl__wrap {
    overflow-x: scroll; }
  .tbl__wrap::-webkit-scrollbar {
    height: 10px; }
  .tbl__inner {
    margin: 0 auto;
    width: 80%; }
    @media (max-width: 56.25em) {
      .tbl__inner {
        width: 100%; } }

footer {
  width: 100%;
  background-color: #f7f7f7; }
  footer .nav_link {
    width: 10rem;
    border-bottom: none; }
    @media (max-width: 37.5em) {
      footer .nav_link {
        border-bottom: 1px solid #b3b3b3; } }

.header {
  display: flex;
  height: 80vh;
  background-image: linear-gradient(to right bottom, rgba(68, 182, 255, 0.8), rgba(86, 67, 250, 0.8)), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
  @media (max-width: 75em) {
    .header {
      height: 77vh; } }
  @media (max-width: 56.25em) {
    .header {
      height: 77vh; } }
  @media (max-width: 37.5em) {
    .header {
      height: 57vh; } }
  .header__logo-box {
    position: absolute;
    top: 40px;
    left: 40px; }
  .header__logo {
    height: 35px; }
  .header__text-box {
    margin: auto;
    text-align: center; }
  .header__navEnd {
    color: white !important;
    font-size: 1rem; }
    .header__navEnd a:hover {
      opacity: .4;
      transition: all 0.2s ease-out; }

.header-s {
  display: flex;
  height: 41vh;
  background-image: linear-gradient(to right bottom, rgba(68, 182, 255, 0.8), rgba(86, 67, 250, 0.8)), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    clip-path:polygon(0 0, 100% 0, 100% 85%, 0 100%);*/ }
  @media (max-width: 75em) {
    .header-s {
      height: 67vh; } }
  @media (max-width: 37.5em) {
    .header-s {
      height: 57vh; } }
  .header-s__logo-box {
    position: absolute;
    top: 40px;
    left: 40px; }
  .header-s__logo {
    height: 35px; }
  .header-s__text-box {
    margin: auto;
    text-align: center; }
  .header-s__navEnd {
    height: 4rem;
    color: white !important;
    font-size: 1rem; }
    .header-s__navEnd a:hover {
      opacity: .4;
      transition: all 0.2s ease-out; }

.home {
  background-image: url("../img/bg_img.jpg");
  background-repeat: no-repeat;
  background-position: right 8rem top 2rem;
  padding-bottom: var(--pb-smaller); }
  @media only screen and (max-width: 56.25em) {
    .home {
      background-position: right .5rem top 20rem; } }
  .home__message {
    z-index: 1;
    background-color: var(--color-grey-light-1);
    position: relative;
    padding: 2rem; }
    .home__message-president {
      width: 5rem;
      height: 5rem;
      border-radius: 50%;
      background-color: #ddd;
      margin-top: 1.5rem;
      display: flex; }
      .home__message-president img {
        display: block;
        height: auto;
        width: 4rem;
        border-radius: 4%; }

.detail {
  display: flex;
  align-items: flex-start;
  padding-bottom: .7rem;
  position: relative;
  top: -8rem; }
  @media only screen and (max-width: 56.25em) {
    .detail {
      flex-direction: column;
      align-items: center; } }
  .detail__panelPhoto {
    z-index: 1;
    width: 42rem;
    height: auto;
    background-color: var(--color-grey-light-1);
    box-shadow: var(--shadow-light);
    padding: .7rem;
    flex: 0 0 60%;
    margin-right: 4.5rem;
    margin-left: 4rem; }
    @media only screen and (max-width: 56.25em) {
      .detail__panelPhoto {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        margin-top: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .detail__panelPhoto {
        margin-top: -1.5rem;
        border: none; } }
    .detail__panelPhoto img {
      width: 100%;
      height: auto; }
  .detail__panelRight {
    flex: 1;
    background-color: var(--color-grey-light-2);
    padding: .7rem;
    box-shadow: var(--shadow-light); }
    @media only screen and (max-width: 56.25em) {
      .detail__panelRight {
        margin-top: 4rem; } }
    .detail__panelRight-topic {
      height: 2rem;
      background-color: var(--color-grey-dark-1);
      color: #fff;
      text-align: center; }
  .detail figcaption {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0 auto; }
    .detail figcaption img {
      width: 35%;
      height: auto;
      border-radius: 50%; }

.members__app {
  text-align: center; }
