@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  --base-color: #434a56;
  --white-color-primary: #f7f8f8;
  --gray-color-primary: #2fa89a;
  --gray-color-secondary: #c2c2c2;
}

.anime-SlideInX {
  --duration: 1s;
  --timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.anime-SlideInX > * {
  display: block;
  position: relative;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform var(--duration) var(--timing-function);
  transition: -webkit-transform var(--duration) var(--timing-function);
  transition: transform var(--duration) var(--timing-function);
  transition: transform var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
}
.anime-SlideInX > *::after {
  background-color: var(--gray-color-primary);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: transform var(--duration) var(--timing-function) calc(var(--duration) / 2), -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  width: 100%;
  z-index: 1;
}
.anime-SlideInX[data-animated=false] {
  opacity: 0;
}
.anime-SlideInX[data-animated=true] {
  opacity: 1;
}
.anime-SlideInX[data-animated=true] > * {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.anime-SlideInX[data-animated=true] > *::after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.anime-SlideInY {
  --duration: 1s;
  --timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.anime-SlideInY > * {
  display: block;
  position: relative;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform var(--duration) var(--timing-function);
  transition: -webkit-transform var(--duration) var(--timing-function);
  transition: transform var(--duration) var(--timing-function);
  transition: transform var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
}
.anime-SlideInY > *::after {
  background-color: var(--gray-color-primary);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  transition: transform var(--duration) var(--timing-function) calc(var(--duration) / 2), -webkit-transform var(--duration) var(--timing-function) calc(var(--duration) / 2);
  width: 100%;
  z-index: 1;
}
.anime-SlideInY[data-animated=false] {
  opacity: 0;
}
.anime-SlideInY[data-animated=true] {
  opacity: 1;
}
.anime-SlideInY[data-animated=true] > * {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.anime-SlideInY[data-animated=true] > *::after {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.anime-FadeIn {
  --duration: 1s;
  --timing-function: ease;
  -webkit-transition: opacity var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function);
}
.anime-FadeIn[data-animated=false] {
  opacity: 0;
}
.anime-FadeIn[data-animated=true] {
  opacity: 1;
}

.anime-FadeInUp {
  --duration: 1s;
  --timing-function: ease;
  --starting-position: 40px;
  -webkit-transition: opacity var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), transform var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
}
.anime-FadeInUp[data-animated=false] {
  opacity: 0;
  -webkit-transform: translateY(var(--starting-position));
  transform: translateY(var(--starting-position));
}
.anime-FadeInUp[data-animated=true] {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.anime-ScaleIn {
  --duration: 1s;
  --timing-function: ease;
  --starting-scale: 0.9;
  -webkit-transition: opacity var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), transform var(--duration) var(--timing-function);
  transition: opacity var(--duration) var(--timing-function), transform var(--duration) var(--timing-function), -webkit-transform var(--duration) var(--timing-function);
}
.anime-ScaleIn[data-animated=false] {
  opacity: 0;
  -webkit-transform: scale(var(--starting-scale));
  transform: scale(var(--starting-scale));
}
.anime-ScaleIn[data-animated=true] {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* # =================================================================
#   ベース
# ================================================================= */
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: inherit;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  /* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
      "Hiragino Sans", Meiryo, sans-serif; */
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

ul li,
ol li {
  list-style-type: none;
}

/* # =================================================================
#   reset
# ================================================================= */
*,
::before,
::after {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* # =================================================================
#	フッター
# ================================================================= */
.st-footer {
  position: relative;
  /* background: linear-gradient(180deg, #d6e3ee 0%, #d6eee6 100%); */
  background: #fff;
  margin-top: 80px;
}

.st-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 50px 0 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.st-footer__logo {
  display: block;
  width: 340px;
  padding-left: 10px;
  padding-right: 10px;
}

.st-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}

/* .st-footer__link > li + li {
  margin-left: 10px;
} */
/* 罫線で区切ったメニュー
------------------------------- */
.st-footer__link::after {
  content: "";
  display: block;
}

.st-footer__link li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.st-footer__link li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.st-footer__link li a {
  display: block;
  padding: 0.4em 0.8em;
}

.st-footer__link li a:hover {
  background: #eee;
}

/*
------------------------------- */
.st-footer__copyright p {
  line-height: 1;
  text-align: right;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {
  .st-footer__head {
    text-align: center;
  }

  .st-footer__logo {
    display: inline-block;
  }

  .st-footer__inner {
    padding: 20px 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .st-footer__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 20px;
  }

  .st-footer__copyright p {
    text-align: center;
  }
}
/* # =================================================================
#	ヘッダー
# ================================================================= */
.st-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  padding: 25px 20px 25px;
  -webkit-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.st-header__logo {
  text-align: center;
}

.st-header__logo a {
  display: inline-block;
  width: 140px;
}

.st-header__logo img {
  width: 100%;
}

.st-header__sns-btn {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.st-header__instagram:hover .path-instagram {
  fill: #2fa89a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.st-header__twitter:hover .path-twitter {
  fill: #2fa89a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.st-header__note:hover .path-note {
  fill: #2fa89a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* # =================================================================
#	グローバルナビゲーション
# ================================================================= */
.st-nav__inner {
  width: calc(100% + 20px + 20px);
  margin-left: -20px;
}

.st-nav__list a {
  display: block;
  font-size: calc(1.1rem + 0.2vw);
  font-size: 1.5rem;
}

.st-nav__list--detail__children-item a {
  font-size: 1.5rem;
}

.st-nav__list > .st-nav__list-item:hover {
  background: #f4e767;
}

/* # =================================================================
#	グローバルナビゲーション2
# ================================================================= */
.st-nav__list > .st-nav__list-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.st-nav__list > .st-nav__list-item.arr::after {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: 0;
  display: inline-block;
  width: 8px;
  height: 1px;
  margin: auto;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #585858;
}

.st-nav__list > .st-nav__list-item.arr:hover:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.st-nav__list > .st-nav__list-item.arr:hover:after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.st-nav__list > .st-nav__list-item.js-hover::before,
.st-nav__list > .st-nav__list-item.js-hover::after {
  position: absolute;
  top: 0px;
  right: 18px;
  bottom: 0;
  display: inline-block;
  width: 11px;
  height: 2px;
  margin: auto;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #585858;
}

.st-nav__list > .st-nav__list-item.js-hover::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.st-nav__list > .st-nav__list-item.js-hover:hover:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.st-nav__list a {
  padding: 15px 0 15px 15px;
}

.st-nav__list--detail {
  position: absolute;
  top: 0;
  left: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 180px;
  height: 100vh;
  min-height: 100%;
  -webkit-transition: 0.3s width, 0.3s opacity 0.1s, 0.3s visibility;
  transition: 0.3s width, 0.3s opacity 0.1s, 0.3s visibility;
  opacity: 0;
  background: #f4e767;
  -webkit-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 0 5px 0 rgba(85, 68, 68, 0.1);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.st-nav__list--detail.is-open {
  visibility: visible;
  width: 200px;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

.st-nav__list--detail > ul {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: auto;
}

.st-nav__list--detail__children {
  overflow-y: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.st-nav__list--detail__children-item {
  position: relative;
  margin: 0 15px;
}

.st-nav__list--detail__children-item a::after {
  position: absolute;
  top: 50%;
  right: -5px;
  bottom: 0;
  display: inline-block;
  width: 8px;
  height: 1px;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #1c1c1c;
}

.st-nav__list--detail__children-item a:hover:after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.st-nav__list--detail__children-item a {
  display: block;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid #fff;
}

.js-ac {
  display: none;
}

.js-ac.is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.st-nav__list--detail__children-item.committee-plan a::after {
  display: none;
}

.st-nav__list--detail__children-item.committee-plan a {
  cursor: default;
}

.committee-plan-item {
  text-indent: 20px;
}

/* # =================================================================
#   ハンバーガーメニュー
# ================================================================= */
.awesome-icon {
  color: #fff;
  font-size: 4vw;
}

.awesome-icon {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.awesome-icon:hover {
  color: #f4e767;
}

.twitter-icon {
  position: absolute;
  bottom: 35vh;
  right: 5.2vw;
}

.instagram-icon {
  position: absolute;
  bottom: 25vh;
  right: 5.7vw;
}

.blog-icon {
  position: absolute;
  bottom: 15vh;
  right: 5vw;
}

.menu-btn {
  position: relative;
  /* top: 8.2vh; */
  /* right: 5vw; */
  display: block;
  z-index: 9998;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  /* position: absolute; */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.menu-line {
  /* position: relative; */
  width: 50px;
  height: 50px;
  z-index: 9999;
  outline: none;
  max-width: 50px;
  max-height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.menu-line,
.menu-line span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-line span:nth-of-type(1) {
  top: 10%;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.menu-line span:nth-of-type(2) {
  top: calc(50% - 2px);
}

.menu-line span:nth-of-type(3) {
  bottom: 10%;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.menu-line span {
  position: absolute;
  left: 5%;
  width: 45px;
  height: 4px;
  background-color: #2fa89a;
  border-radius: 4px;
  outline: none;
}

.a {
  -webkit-animation-name: cross1;
  animation-name: cross1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.b {
  -webkit-animation-name: cross2;
  animation-name: cross2;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.c {
  -webkit-animation-name: cross3;
  animation-name: cross3;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes cross1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
  99.9%, to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18%;
  }
}
@keyframes cross1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
  99.9%, to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18%;
  }
}
@-webkit-keyframes cross2 {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99.9%, to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes cross2 {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99.9%, to {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes cross3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
  99.9%, to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 18%;
  }
}
@keyframes cross3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
  99.9%, to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 18%;
  }
}
.a-back {
  -webkit-animation-name: cross1-back;
  animation-name: cross1-back;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.b-back {
  -webkit-animation-name: cross2-back;
  animation-name: cross2-back;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.c-back {
  -webkit-animation-name: cross3-back;
  animation-name: cross3-back;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes cross1-back {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18%;
  }
  99.9%, to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
}
@keyframes cross1-back {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18%;
  }
  99.9%, to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
}
@-webkit-keyframes cross2-back {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99.9%, to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes cross2-back {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99.9%, to {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes cross3-back {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 18%;
  }
  99.9%, to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
}
@keyframes cross3-back {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 18%;
  }
  99.9%, to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: 5%;
  }
}
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 9992;
  top: 0;
  overflow: hidden;
  width: 50vw;
  height: 100%;
  color: #ffffff;
  background-color: #2fa89a;
  display: none;
  overflow-y: scroll;
  padding-top: 40px;
  padding-bottom: 20px;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 追加 */
  /* margin-top: 13vh; */
  padding-left: 5vw;
}

.drawer-menu li li {
  padding-left: 1.5em;
}

.drawer-menu li li li {
  padding-left: 1.5em;
}

.drawer-menu-item {
  /* font-size: 1rem; */
  /* display: block; */
  padding: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /* 追加 */
  display: inline-block;
  /* font-size: $size-description; */
}

.drawer-menu-item:hover {
  /* text-decoration: underline; */
  color: #f4e767;
  background-color: transparent;
}

.no-change-color {
  color: #fff !important;
}

.drawer--right .drawer-nav {
  right: -50vw;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

.drawer-hamburger {
  position: fixed;
  width: 15vw;
  height: 22vh;
  z-index: 9994;
  top: 0;
  display: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* width: 6vw; */
  padding: 0;
  /* margin-right: 7vw; */
  /* height: 180px; */
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  /* cursor: pointer; */
  background-color: transparent;
}

.drawer-overlay-right {
  -webkit-animation-name: drawer-overlay-right;
  animation-name: drawer-overlay-right;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes drawer-overlay-right {
  0% {
    right: -50vw;
  }
  99.9%, to {
    right: 0;
  }
}
@keyframes drawer-overlay-right {
  0% {
    right: -50vw;
  }
  99.9%, to {
    right: 0;
  }
}
.drawer-overlay-right-back {
  -webkit-animation-name: drawer-overlay-right-back;
  animation-name: drawer-overlay-right-back;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes drawer-overlay-right-back {
  0% {
    right: 0;
  }
  99.9%, to {
    right: -50vw;
  }
}
@keyframes drawer-overlay-right-back {
  0% {
    right: 0;
  }
  99.9%, to {
    right: -50vw;
  }
}
.menu-under {
  display: none;
}

.drawer-overlay-left {
  position: fixed;
  z-index: 9991;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-nav .path-twitter {
  fill: #fff;
}

.drawer-nav .path-instagram {
  fill: #fff;
}

.drawer-nav .path-note {
  fill: #fff;
}

.drawer-nav .st-header__twitter:hover .path-twitter {
  fill: #f4e767;
}

.drawer-nav .st-header__instagram:hover .path-instagram {
  fill: #f4e767;
}

.drawer-nav .st-header__note:hover .path-note {
  fill: #f4e767;
}

.drawer__sns {
  /* display: inline-block; */
  /* display: block; */
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5vw;
  /* padding-left: 12%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  /* align-items: center; */
}

/* .drawer__sns a {
  margin-right: 20px;
} */
/* ドロップダウンの矢印↓
------------------------------- */
.menu-item-link {
  position: relative;
}

.menu-item-link::after {
  content: "";
  position: absolute;
  top: 1.1em;
  right: -14px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;
}

.menu-item-link.open::after {
  content: "";
  position: absolute;
  top: 0.65em;
  right: -14px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}

.menu-item-link:hover::after {
  border-top-color: #f4e767;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.menu-item-link.open:hover::after {
  border-top-color: transparent;
  border-bottom-color: #f4e767;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* # =================================================================
#   過去の明大祭の様子
# ================================================================= */
.photo-show {
  /*    height: 800px; 表示したい大きさ*/
  height: 36vw;
  /* height: 60vh; */
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  /*縦余白30pxは任意*/
  position: relative;
  width: 80%;
  /*表示したい大きさ、height と合わせる*/
}

.photo-show img {
  /*    animation: show ease 92s infinite;*/
  -webkit-animation-name: show;
  animation-name: show;
  animation-iteration-count: infinite;
  animation-duration: 81s;
  /*    -webkit-animation: show ease 92s infinite;*/
  -weblit-animation-name: show;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 81s;
  height: auto;
  max-width: 100%;
  opacity: 0;
  position: absolute;
  /*画像を全て重ねる*/
}

.photo_con {
  position: relative;
  text-align: center;
  width: auto;
  /* margin-top: 3rem; */
  padding-bottom: 3rem;
  height: auto;
}

.photo_con a {
  /* max-width: 30vw; */
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  /* -moz-touch-callout: none; */
  -moz-user-select: none;
  /* touch-callout: none; */
  -ms-user-select: none;
  user-select: none;
}

.photo_con a img {
  width: 20%;
  height: auto;
  display: inline-block;
  margin: 0.3vw;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  /* -moz-touch-callout: none; */
  -moz-user-select: none;
  /* touch-callout: none; */
  -ms-user-select: none;
  user-select: none;
}

.photo_con a:nth-of-type(2) img,
.photo_con a:nth-of-type(6) img,
.photo_con a:nth-of-type(10) img,
.photo_con a:nth-of-type(14) img,
.photo_con a:nth-of-type(18) img,
.photo_con a:nth-of-type(22) img {
  margin-right: 1.2vw;
}

/*アニメーション*/
@keyframes show {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}
/*各画像のアニメーションの開始時間をずらす*/
.photo-show img:nth-of-type(1) {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.photo-show img:nth-of-type(2) {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}

.photo-show img:nth-of-type(3) {
  animation-delay: 6s;
  -webkit-animation-delay: 6s;
}

.photo-show img:nth-of-type(4) {
  animation-delay: 9s;
  -webkit-animation-delay: 9s;
}

.photo-show img:nth-of-type(5) {
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
}

.photo-show img:nth-of-type(6) {
  animation-delay: 15s;
  -webkit-animation-delay: 15s;
}

.photo-show img:nth-of-type(7) {
  animation-delay: 18s;
  -webkit-animation-delay: 18s;
}

.photo-show img:nth-of-type(8) {
  animation-delay: 21s;
  -webkit-animation-delay: 21s;
}

.photo-show img:nth-of-type(9) {
  animation-delay: 24s;
  -webkit-animation-delay: 24s;
}

.photo-show img:nth-of-type(10) {
  animation-delay: 27s;
  -webkit-animation-delay: 27s;
}

.photo-show img:nth-of-type(11) {
  animation-delay: 30s;
  -webkit-animation-delay: 30s;
}

.photo-show img:nth-of-type(12) {
  animation-delay: 33s;
  -webkit-animation-delay: 33s;
}

.photo-show img:nth-of-type(13) {
  animation-delay: 36s;
  -webkit-animation-delay: 36s;
}

.photo-show img:nth-of-type(14) {
  animation-delay: 39s;
  -webkit-animation-delay: 39s;
}

.photo-show img:nth-of-type(15) {
  animation-delay: 42s;
  -webkit-animation-delay: 42s;
}

.photo-show img:nth-of-type(16) {
  animation-delay: 45s;
  -webkit-animation-delay: 45s;
}

.photo-show img:nth-of-type(17) {
  animation-delay: 48s;
  -webkit-animation-delay: 48s;
}

.photo-show img:nth-of-type(18) {
  animation-delay: 51s;
  -webkit-animation-delay: 51s;
}

.photo-show img:nth-of-type(19) {
  animation-delay: 54s;
  -webkit-animation-delay: 54s;
}

.photo-show img:nth-of-type(20) {
  animation-delay: 57s;
  -webkit-animation-delay: 57s;
}

.photo-show img:nth-of-type(21) {
  animation-delay: 60s;
  -webkit-animation-delay: 60s;
}

.photo-show img:nth-of-type(22) {
  animation-delay: 63s;
  -webkit-animation-delay: 63s;
}

.photo-show img:nth-of-type(23) {
  animation-delay: 66s;
  -webkit-animation-delay: 66s;
}

.photo-show img:nth-of-type(24) {
  animation-delay: 69s;
  -webkit-animation-delay: 69s;
}

/*マウスが画像に重なった際、動きを止めて四角くする*/
/* .photo-show img {
  transition: 69s;
  -webkit-transition: 69s;
} */
/* .photo-show:hover img {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
} */
.click-big {
  text-align: center;
}

.holding-form {
  /* font-size: 0; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  padding: 0 40px;
}

.holding-form p {
  display: inline-block;
  width: 48%;
  font-size: 1.7rem;
  text-align: center;
}

/* # =================================================================
#   共通デザイン
# ================================================================= */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.brackets {
  display: inline-block;
  text-indent: -0.5em;
}

.mojitsume {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.0375rem;
}

.sumitsuki-brackets {
  display: inline-block;
  text-indent: -0.5em;
}

.emphasis {
  font-weight: 500;
  border-bottom: 2px solid #f4e767;
}

.precautions {
  border-collapse: collapse;
}

.precautions tr td:first-child {
  vertical-align: top;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  /* margin-left: 5%; */
}

.schedule thead tr {
  background-color: #2fa89a;
  color: #fff;
}

.schedule tbody tr {
  background-color: #fff;
}

.schedule td {
  border: solid 2px #535353;
  padding: 5px;
  text-align: center;
}

.schedule td:empty {
  background-color: #ddd;
}

.dots {
  vertical-align: top;
}

.itemization tr td:first-child {
  vertical-align: top;
}

.kintouwaritsuke {
  text-indent: -0.5em;
}
.kintouwaritsuke tr td:first-child {
  -moz-text-align-last: justify;
  text-align-last: justify;
  padding-right: 15px;
}
.kintouwaritsuke tr td span {
  margin-left: 0.2em;
  margin-right: 0.2em;
}

.line-through {
  background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(red));
  background-image: -webkit-linear-gradient(red, red);
  background-image: linear-gradient(red, red);
  background-position: 0 50%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
  color: #888;
}

.underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #f4e767));
  background: -webkit-linear-gradient(transparent 70%, #f4e767 0%);
  background: linear-gradient(transparent 70%, #f4e767 0%);
}

.font-weight-500 {
  font-weight: 500;
}

/* # =================================================================
#	レイアウト
# ================================================================= */
.c-l-column {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* .c-l-flex-box {
    display: flex;
} */
.pcnone {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.7);
  /* display: -webkit-box;

    display: flex; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.pcnone p {
  font-size: 3rem;
  color: #eee;
  display: inline;
}

.pcnone p:hover {
  border-bottom: 2px solid #eee;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ! 0525_767pxから変更 */
@media screen and (max-width: 679px) {
  .pcnone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
/* # =================================================================
#	見出し
# ================================================================= */
.c-headline {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.c-h-title__head {
  padding: 100px 0 100px 0;
}

.c-h-title__head._about {
  background: url(../img/bg_lowermv_about-tr.jpg) center/cover;
}

.c-h-title__head._company {
  background: url(../img/bg_lowermv_company-tr.jpg) center/cover;
}

.c-h-title__head._alumni {
  background: url(../img/bg_lowermv_alumni-tr.jpg) center/cover;
}

.c-h-title__head._media {
  background: url(../img/bg_lowermv_media-tr.jpg) center/cover;
}

.c-h-title__head._participants {
  background: url(../img/bg_lowermv_participants-tr.jpg) center/cover;
}

.c-h-title__head._special {
  background: url(../img/bg_lowermv_special-tr.jpg) center/cover;
}

.c-headline {
  color: #ececec;
  font-size: 3.6rem;
  padding-left: 80px;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
}

/* # =================================================================
#	ボタン
# ================================================================= */
.btn-wrapper {
  text-align: center;
}

.participation-form .btn-wrapper {
  margin-top: 50px;
}

.nomal-btn {
  display: inline-block;
  border: 3px solid #2fa89a;
  border-radius: 50px;
  text-align: center;
  padding: 0.5em 4em;
  color: #fff;
  background-color: #2fa89a;
}

.nomal-btn:hover i {
  /* transform: translateX(0.2em); */
  color: #2fa89a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nomal-btn:hover {
  color: #2fa89a;
  background-color: #fff;
  border: 3px solid #2fa89a;
}

i.fa-chevron-right {
  padding-left: 1rem;
}

.top-btn {
  position: absolute;
  right: 0;
  bottom: 15%;
  background-color: #2fa89a;
  padding: 1.2em 3em;
  max-width: 70%;
}

.top-btn:hover {
  opacity: 0.9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-btn {
  color: #fff;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 500;
  font-size: 2.1rem;
}

@media screen and (max-width: 800px) {
  .top-btn {
    padding: 0.8em 2.6em;
  }

  .top-btn {
    font-size: 1.5rem;
  }
}
.top-btn:hover i {
  -webkit-transform: translateX(0.3em);
  transform: translateX(0.3em);
  /* color: #2fa89a; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-btn-wrapper {
  text-align: right;
}

.more-btn {
  display: inline-block;
  background-color: #79d2db;
  margin-top: 30px;
  padding: 0.4em 0.7em;
  color: #fff;
}

.more-btn:hover i {
  -webkit-transform: translateX(0.2em);
  transform: translateX(0.2em);
  /* color: #2fa89a; */
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* # =================================================================
#	リンク
# ================================================================= */
.link-blue {
  text-decoration: none;
  color: #2fa89a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-bottom: 1px solid #2fa89a;
}

.link-blue:hover {
  opacity: 0.5;
}

.link-section__blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.link-section__svg {
  /* margin-bottom: -0.2em; */
  margin-left: 7px;
}

.link-section__blue {
  text-decoration: none;
  color: #2fa89a;
}

.link-section__blue span {
  border-bottom: 1px solid #2fa89a;
}

.link-section__blue:hover span,
.link-section__blue:hover svg {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.5;
}

.link-section__path-twitter {
  fill: #000;
}

.link-section__path-instagram {
  fill: #000;
}

.link-section__path-note {
  fill: #000;
}

a[href*=".pdf"]::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  color: #f30401;
  padding-left: 6px;
}

a[href*=".doc"]::after,
a[href*=".docx"]::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  color: #0061c2;
  padding-left: 6px;
}

a[href*=".xls"]::after,
a[href*=".xlsx"]::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  color: #1f6f43;
  padding-left: 6px;
}

/* a[href*=".pdf"] {
    margin-right: 5px;
} */
/* # =================================================================
#	フォント
# ================================================================= */
/* # =================================================================
#	タイトル
# ================================================================= */
.c-h-title {
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  text-align: center;
  /* -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt'; */
}

.c-h-title {
  font-size: 2.8rem;
  line-height: 1;
  position: relative;
}

.c-h-title {
  padding-top: 80px;
  /* display: block; */
}

.c-h-title.english {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
}

.c-h-title span.deco {
  display: inline-block;
  position: relative;
}

.c-h-title span.deco::before {
  position: absolute;
  content: "";
  top: -40px;
  left: -40px;
  width: 40px;
  height: 40px;
  background: url(../img/title-deco01-tr.png) center/cover;
}

.c-h-title span.deco._left::before {
  left: -45px;
}

.c-h-title span.deco::after {
  position: absolute;
  content: "";
  bottom: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../img/title-deco02-tr.png) center/cover;
}

.c-h-title .mini {
  font-size: 1.8rem;
}

.c-h-title__sub {
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  /* text-align: center; */
  /* -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt'; */
}

.c-h-title__sub {
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  /* margin-top: 60px; */
}

.c-h-title__sub {
  padding: 0.5em 1.2em 0.5em 0.6em;
  background: rgba(120, 227, 236, 0.25);
  border-left: solid 10px #79d2db;
  display: inline-block;
  margin-bottom: 20px;
  color: #555;
}

/* .c-h-title__sub02 {
    font-size: 2rem;
    line-height: 1;
    position: relative;
    -webkit-transform: translateX(1em);
    transform: translateX(1em);
}

.c-h-title__sub02::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    position: absolute;
    -webkit-transform: translate(-0.6em, -0.13em);
    transform: translate(-0.6em, -0.13em);
    color: #79d2db;
    font-weight: 900;
    font-size: 1.5em;
} */
/* # =================================================================
#	 コンテンツ
# ================================================================= */
.st-conts__head {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 200px;
  background: #fff;
}

.st-conts__body {
  position: relative;
  z-index: 1;
  width: calc(100% - 200px);
  margin-left: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0fffd), to(#e9feff));
  background: -webkit-linear-gradient(top, #f0fffd 0%, #e9feff 100%);
  background: linear-gradient(180deg, #f0fffd 0%, #e9feff 100%);
}

/* # =================================================================
#	 メイン
# ================================================================= */
.top-mv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.top-mv__img {
  width: 100%;
  /* min-width: 1280px; */
  height: 0;
  height: 100vh;
  margin-bottom: 36px;
  /* padding-top: 18%; */
  background: url(../img/mv_pc6.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.top-mv__img img {
  width: 70%;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.top-news {
  position: relative;
  z-index: 1;
}

/*
.top-news__inner {
    background: #fff;
} */
/* .top-news__inner > .c-l-column {
    position: relative;
    padding: 36px 0 57px;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02),
        0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035),
        0 22.3px 17.9px rgba(0, 0, 0, 0.042),
        0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
} */
.top-news__title {
  font-size: 2.4rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  letter-spacing: 0.15em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.top-info {
  position: relative;
  z-index: 1;
  width: 100%;
  /* height: 200px; */
}

._to-sub {
  font-size: 0;
}

.to-sub__btn:nth-of-type(1),
.to-sub__btn:nth-of-type(3),
.to-sub__btn:nth-of-type(5) {
  margin-right: 10%;
}

.to-sub__btn {
  width: 45%;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.to-sub__btn a div {
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.to-sub__btn a img {
  width: 100%;
}

.to-sub__btn a span {
  position: absolute;
  /* background-color: #79d2db; */
  display: inline-block;
  bottom: -10px;
  left: -10px;
  padding: 1em 3em 0.6em 1.2em;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

/* ! 0525_追加 */
@media screen and (max-width: 800px) {
  .to-sub__btn a span {
    font-size: 1.1rem;
  }
}
.to-sub__btn a span {
  z-index: 1;
  color: #fff;
}

.to-sub__btn a span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #2fa89a;
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-2deg);
  transform: scaleY(1.3) perspective(0.6em) rotateX(-2deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.to-sub__btn a .two-letters {
  padding: 1em 3em 1.1em 1.2em;
}

.to-sub__btn a .two-letters::before {
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-3.5deg);
  transform: scaleY(1.38) perspective(0.6em) rotateX(-4deg);
}

.to-sub__btn a .five-letters {
  padding: 1em 3em 1.1em 1.2em;
}

.to-sub__btn a .five-letters::before {
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-3deg);
  transform: scaleY(1.3) perspective(0.6em) rotateX(-3deg);
}

.to-sub__btn a .seven-letters {
  padding: 1em 3em 1.1em 1.2em;
}

.to-sub__btn a .seven-letters::before {
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-3deg);
  transform: scaleY(1.18) perspective(0.6em) rotateX(-2deg);
}

.to-sub__btn a .ten-letters::before {
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-1.8deg);
  transform: scaleY(1.15) perspective(0.6em) rotateX(-1.8deg);
}

.to-sub__btn a .ten-letters {
  padding: 1em 3em 1.1em 1.2em;
}

.to-sub__btn a .fourteen-letters::before {
  -webkit-transform: scaleY(1.3) perspective(0.6em) rotateX(-1.5deg);
  transform: scaleY(1.1) perspective(0.6em) rotateX(-1.3deg);
}

.to-sub__btn a .fourteen-letters {
  padding: 1em 3em 1.1em 1.2em;
}

.to-sub__btn a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* トップへ戻るボタン
------------------------------- */
.pageup {
  position: fixed;
  right: 25px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  z-index: 50;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  background-color: #f4e767;
}

.pageup-arr {
  position: absolute;
  top: 15px;
  right: 50%;
  width: 23px;
  height: 23px;
  border-top: 3px #ffffff solid;
  border-right: 3px #ffffff solid;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.pageup.visible {
  -webkit-animation-name: pageup-visible;
  animation-name: pageup-visible;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes pageup-visible {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes pageup-visible {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.pageup.hidden {
  -webkit-animation-name: pageup-hidden;
  animation-name: pageup-hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes pageup-hidden {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes pageup-hidden {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* # =================================================================
#   下層の共通項目
# ================================================================= */
.sub-section {
  padding: 0 20px;
}

.sub-section__cont {
  margin: 80px 0 0;
  padding: 0 70px;
  width: 100%;
}

.c-h-title + .sub-section__cont {
  margin-top: 100px;
}

.white-bg {
  /* margin: 100px 0 230px; */
  padding: 50px 70px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.news__cont {
  /* border-top: 1px solid #d7d8d9; */
  border-bottom: 1px solid #d7d8d9;
  padding: 0.8em 0.4em;
}

.top-news .white-bg div:first-child {
  border-top: 1px solid #d7d8d9;
}

.news__date {
  color: #939393;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.news__sentence {
  font-size: 1.8rem;
}

.sub-section__cont + .sub-section__cont {
  margin-top: 60px;
}

.sub-section__cont.date {
  /* text-align: center; */
  font-size: 1.8rem;
}

.sub-section__main-photos {
  text-align: center;
  /* width: 400px; */
  margin-bottom: 60px;
}

.sub-section__main-photos span {
  position: relative;
  display: inline-block;
}

.sub-section__main-photos span {
  /*影を入れる*/
  -webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
  box-shadow: 0 10px 8px -6px #8d8c8c;
}

.sub-section__main-photo {
  width: 560px;
  height: auto;
}

.policy-section__heading {
  font-size: 2.1rem;
}

.contact-table {
  border-collapse: collapse;
  border-spacing: 0;
}

.contact-table tr:not(:first-child) td:first-child {
  text-align: right;
}

/* # =================================================================
#   参加団体・参加者のみなさまへ
# ================================================================= */
.c-h-title__sub + .schedule {
  margin-top: 8px;
}

.c-h-title__sub + .recruit-movie {
  margin-top: 8px;
}

.entry-chart-sub-heading td {
  font-size: 1.9rem;
}

tr + .entry-chart-sub-heading td {
  padding-top: 40px;
}

.participants-section__img {
  width: 90%;
  /* margin: 8px 0; */
}

.participation-form__img {
  text-align: center;
  margin: 10px 0;
}

.participation-form__img img {
  width: 80%;
}

.participation-form {
  padding-top: 30px;
  margin-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.participation-form h3 {
  font-size: 2.1rem;
  color: #2fa89a;
}

.participation-form h3 + .participation-form__img {
  margin-top: 50px;
}

.recruit-movie + p {
  margin-top: 20px;
}

p + .recruit-movie {
  margin-top: 20px;
}

.recruit-movie {
  position: relative;
  width: 90%;
  height: 0;
  padding-top: 50%;
  margin-left: auto;
  margin-right: auto;
}

.recruit-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.participation-form .sub-heading {
  margin-top: 50px;
  -webkit-transform: translateX(1em);
  transform: translateX(1em);
  font-size: 2rem;
}

.participation-form .sub-heading::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  position: absolute;
  -webkit-transform: translate(-0.6em, -0.28em);
  transform: translate(-0.6em, -0.28em);
  color: #79d2db;
  font-weight: 900;
  font-size: 1.5em;
}

.participation-form p {
  width: 80%;
  margin-left: 10%;
}

/* # =================================================================
#   第137回明大祭テーマ
# ================================================================= */
.theme-concept {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: 30px;
}

.concept {
  width: 100%;
}

.theme-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  width: 30%;
}

.process {
  width: 50%;
}

.theme-color {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.maincolor {
  width: 100%;
}

/* # =================================================================
#   第137回明大祭公式テーマソング募集
# ================================================================= */
dd {
  margin-left: 0;
}

.flow {
  padding-left: 120px;
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}

.flow > li {
  position: relative;
}

.flow > li:not(:last-child) {
  margin-bottom: 8vh;
}

.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#2fa89a), to(#85e5da));
  background: -webkit-gradient(linear, left top, right top, from(#2fa89a), to(#6bdacd));
  background: -webkit-linear-gradient(left, #2fa89a 0%, #6bdacd 100%);
  background: linear-gradient(to right, #2fa89a 0%, #6bdacd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6b90db", endColorstr="#66d5e9",GradientType=1 );
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: -2px;
  left: -120px;
  z-index: 100;
}

.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #6bdacd;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow > li dl {
  padding-left: 70px;
  position: relative;
}

.flow > li dl::before,
.flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #2fa89a;
  border-radius: 50%;
  left: -4px;
}

.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #2fa89a;
  margin-bottom: 1vh;
}

div.themesong-chart-desc.white-bg {
  padding-top: 0px;
}

.themesong-chart-desc h3 {
  color: #2fa89a;
  font-size: 2rem;
  position: relative;
  margin-bottom: 5px;
}

.themesong-chart-desc .bold {
  font-weight: bold;
}

.themesong-chart-desc p + p {
  margin-top: 20px;
}

.themesong-chart-desc .precautions {
  margin-top: 20px;
}

.themesong-chart-desc .icon {
  margin-top: 50px;
  margin-bottom: 5px;
}

.themesong-chart-desc .icon {
  font-size: 12px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#2fa89a), to(#85e5da));
  background: -webkit-gradient(linear, left top, right top, from(#2fa89a), to(#6bdacd));
  background: -webkit-linear-gradient(left, #2fa89a 0%, #6bdacd 100%);
  background: linear-gradient(to right, #2fa89a 0%, #6bdacd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6b90db", endColorstr="#66d5e9",GradientType=1 );
  padding: 8px 20px;
  display: inline-block;
  position: relative;
  z-index: 100;
}

.precautions.song-space td {
  padding-top: 10px;
}

.song-example p {
  font-size: 2rem;
}

@media screen and (max-width: 1024px) {
  .st-conts__head {
    display: none;
  }

  .st-conts__body {
    width: calc(100%);
    margin-left: 0;
  }

  .c-l-column {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .drawer-hamburger {
    display: block;
  }

  .drawer-nav {
    display: block;
  }
}
/*# sourceMappingURL=map/style.css.map */