@charset "UTF-8";

/* グロナビカレント表示
============================================= */
.lower_mv img {
  width: 100%;
}
.lower_mv_title_area {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  transition:
    position 0.3s,
    opacity 1s,
    bottom 0.3s;
}

@media only screen and (max-width: 768px) {
  .lower_mv_title {
    font-size: 38px;
  }
}

#loginBtnEntry,
#loginBtnAttendance {
  position: relative;
  z-index: 10;
}

/* 共通
====================================== */
.contents_bg {
  background-color: #000;
}
.text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
}
.text.sans {
  font-family: "Noto Sans JP", sans-serif;
}
.section_head {
  display: flex;
  flex-direction: column;
  column-gap: 64px;
  row-gap: 16px;
}
.section_head_en {
  flex-shrink: 0;
  font-family: "EB Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
.section_head_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 16px;
}
.section_head_jp {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contents_bg {
    background: #262626;
  }
  .text {
    font-size: 13px;
    line-height: 1.5;
  }
  .section_head_en {
    font-size: 10px;
  }
  .section_head_jp {
    font-size: 23px;
  }
}

/* contents_area_wrap
======================================== */
.contents_area_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.limited_contents {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding-right: 30px;
  padding-bottom: 80px;
}
.limited_contents.bg_gray {
  background-color: #262626;
}
.contents_name {
  width: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}
.contents_name_en {
  position: relative;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-family: "EB Garamond", serif;
  color: #fff;
}
.contents_name_line {
  position: relative;
  width: 100%;
  flex: 1;
}
.contents_name_line::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.contents_body {
  flex: 1;
}

@media only screen and (max-width: 1024px) {
  .contents_area_wrap {
    display: contents;
  }
  .limited_contents {
    flex-direction: column;
    padding-right: 0px;
    padding-bottom: 40px;
  }
  .contents_name {
    display: none;
  }
  .contents_body {
    width: calc(100% - 60px);
    max-width: 600px;
    margin-inline: auto;
  }
}

/* login_area
========================================= */
.login_area {
  padding-top: 100px;
  padding-bottom: 80px;
}
.login_area_title {
  font-size: 40px;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 40px;
}
.login_area .text {
  margin-top: 24px;
}
.login_area_pass {
  max-width: 568px;
}
.login_wrap {
  position: relative;
  display: flex;
  height: 64px;
}
.login_wrap input {
  font-size: 14px;
  background-color: #fff;
  padding-left: 24px;
  height: 100%;
  width: 75%;
  display: block;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  border: none;
  border-radius: 3px 0 0 3px;
}
.login_wrap .sendBtn {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  cursor: pointer;
  background: #424242;
  background: linear-gradient(
    135deg,
    rgba(66, 66, 66, 1) 0%,
    rgba(18, 18, 18, 1) 100%
  );
  border-radius: 0 3px 3px 0;
}
.login-btn_wrap {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.login-btn_text {
  color: #fff;
  font-size: 20px;
  font-family: "EB Garamond", serif;
}
.icon-login {
  width: 24px;
}
.error_text {
  position: absolute;
  left: 0;
  top: -30px;
  color: #c22828;
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  letter-spacing: 1px;
  padding: 0 10px;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .login_area {
    padding-block: 50px;
  }
  .login_area .section_head_en {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  .login_area_title {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .login_wrap {
    height: 48px;
  }
  .login_wrap input {
    padding-left: 15px;
    font-size: 13px;
  }
  .login_wrap .sendBtn {
    height: 48px;
  }
  .login-btn_wrap {
    column-gap: 6px;
  }
  .login-btn_text {
    font-size: 15px;
  }
  .icon-login {
    width: 20px;
  }
  .error_text {
    position: absolute;
    left: 0;
    top: -30px;
    color: #c22828;
    background-color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    letter-spacing: 1px;
    padding: 0 10px;
    font-size: 12px;
  }
}

/* limited_area
======================================== */
.grid_wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}
.limited_area {
  max-width: 810px;
  padding-bottom: 60px;
}
.limited_item {
  display: block;
  background: #1e1e1e;
  transition: 0.4s;
}
.limited_item:hover {
  opacity: 0.7;
}
.limited_item_body {
  padding-top: 20px;
  padding-inline: 20px;
  padding-bottom: 30px;
}
.limited_item_en {
  font-family: "EB Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.limited_item_title {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
}
.limited_item_text {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .grid_wrap {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
  .limited_area {
    padding-bottom: 30px;
  }
  .limited_item {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
  }
  .limited_item_body {
    padding: 15px;
  }
  .limited_item_en {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .limited_item_title {
    font-size: 13px;
  }
}

/* SPタブ（768px以下だけ表示） */
.spOnly {
  display: none;
}

@media only screen and (max-width: 768px) {
  .spOnly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .limited_tabBtn {
    position: relative;
    background: #000;
    color: #fff;
    padding: 10px 10px;
    font-size: 13px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s;
    border: none;
    font-family:
      "Noto Serif JP", "EB Garamond", "Yu Mincho", YuMincho,
      "Hiragino Mincho ProN", serif;
  }
  .limited_tabBtn:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .limited_tabBtn.is-active {
    background: #262626;
  }
  .limited_tabBtn.is-active:after {
    content: none;
  }

  .contents_area_wrap .js-limited-panel {
    display: none;
  }
  .contents_area_wrap .js-limited-panel.is-active {
    display: flex;
    background: #262626;
  }

  .js-limited-panel.is-active .login_area {
    padding-top: 40px;
  }
}
