/*
Theme Name : Iwamizawa
Description : Wordpressテーマ「Iwamizawa」
Author: Takeyuki Miyagi
Version : 1.0
*/

.fade-in-once {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.fade-in-once.active {
    opacity: 1;
    transform: translate(0, 0);
}

section#content {
	padding: 60px 0;
}

h2 {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}


section#main {
    background: rgba(6, 12, 34, 0.98);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#main h1 {
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 56px;
    font-weight: 600;
    text-transform: uppercase;
	margin-bottom: 0 !important;
}