@charset "utf-8";
/* CSS Document */
/*ローディング*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #999;
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.loading-one {
  display: inline-block;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  animation-name: loadingAnimation;
  animation-duration: 3s;
}
.loading-one p.loading-txt {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.25em;
  line-height: 2.0;
  padding: 2em 0;
}
#loading.is-active {
  display: none;
}
@keyframes loadingAnimation {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.header {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.header h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: 74px;
  left: 0;
  right: 0;
  filter: drop-shadow(3px 3px 3px #6F7DB0);
}
.header_logo_image {
  width: 200px;
}

.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 2.0s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background-color: #F3F8FF;
}
.garally {
  overflow: hidden;
}
.garally_subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-top: 85px;
  margin-bottom: 50px;
  line-height: 42px;
}
.pc_hid {
  display: none;
}
.centering-block {
  text-align: center;
  margin-bottom: 95px;
}
.centering-block .centering-block-inner {
  text-align: left;
  display: inline-block;
  color: #7E7E7E;
  line-height: 35px;
}
.garally_seasons {
  font-size: 28px;
  font-weight: 500;
  color: #7E7E7E;
  margin-top: 50px;
}
.denju_black_logo {
  position: absolute;
  opacity: 0.1;
  display: block;
  right: 20px;
  margin-top: -1550px;
}
.garally-title {
  position: relative;
  width: 71vw;
  text-align: right;
  margin-bottom: 75px;
}
.garally-title :before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: solid 1px #2c2c2c;
	animation: garally-h2_anim 4s linear forwards;
}
@keyframes garally-h2_anim {
	0%{
		width: 5em;
	}
	100%{
		width: 100%;
	}
}
.season_amin {
  font-size: 24px;
  margin-top: 150px;
  padding-bottom: 25px;
  opacity: 1;
}
.garally .contents_wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 100px;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime; /*アニメーションの名前*/
  -webkit-animation-duration: 5s;
  animation-duration: 5s; /*アニメーションの実行時間*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; /*アニメーション後、要素が表示されたままにする*/
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    -webkit-transform: translateY(100px);
    transform: translateY(100px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 2; /*表示*/
    -webkit-transform: translateY(0);
    transform: translateY(0); /*元の位置*/
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    -webkit-transform: translateY(100px);
    transform: translateY(100px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1; /*表示*/
    -webkit-transform: translateY(0);
    transform: translateY(0); /*元の位置*/
  }
}
.fadeUpTrigger {
  opacity: 0; /*非表示*/
}

/* smooth */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.smoothTrigger {
  opacity: 0;
}

/* fadeDown */

.fadeDown{
animation-name: fadeDownAnime;
animation-duration:4s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 2;
	transform: translateY(0);
  }
}

/* zoomIn */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.garally .img {
  flex-direction: row-reverse;
}
.garally .description {
  display: block;
  align-items: center;
  width: 50%;
  justify-content: center;
  box-sizing: border-box;
  text-align: left;
  line-height: 30px;
}
.garally .description2 {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: flex-end;
}
.award {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0px;
}
.award2 {
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 5px;
}
.award3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.Winter_description {
  background: #E8EFFF;
  padding: 15px;
  text-align: left;
}
.Winter_description_hosi {
  background: #E0F1FB;
  padding: 15px;
  text-align: left;
}
.summer_description {
  background: #E0EFE5;
  padding: 15px;
  text-align: left;
  margin-top: 35px
}
.autumn_description {
  background: #F3ECE1;
  padding: 15px;
  text-align: left;
  margin-top: 35px
}
.garally .garally_img {
  width: 50%;
  text-align: left;
  transition: 0.7s;
  transition-timing-function: linear;
}
.garally .garally_img:hover {
  transform: scale(1.1);
}
.garally .discription {
  justify-content: flex-start;
}
.garally .img_right {
  flex-direction: row-reverse;
}
.garally .img_right .garally_img {
  text-align: left;
}
.garally .img_right .discription {
  justify-content: flex-start;
}
.garally .img .discription {
  justify-content: flex-end;
}
.garally h3 {
  font-size: 22px;
  letter-spacing: 10px;
  font-weight: 100;
  width: 100%;
  display: block;
  text-align: left;
  border-bottom: 1px solid #333333;
  padding: 0 0 15px 0;
  color: #333333;
}
.garally .number {
  display: inline-block;
  margin-right: 70px;
  font-size: 22px;
  font-family: Roboto;
  font-weight: 600;
}
.garally section {
  max-width: 880px;
  margin: 0 auto;
}
/*パララックス*/
.parallax {
  background-image: url("../images/seasons/siki_obi.jpg");
  width: 100%;
  height: 275px;
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
  margin-top: 100px;
}
.parallax1 {
  background-image: url(../images/seasons/fuyu_obi.jpg);
  height: 275px;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: left center;
  margin-top: 70px;
}
.parallax2 {
  background-image: url("../images/seasons/haru_obi1.jpg");
  width: 100%;
  height: 275px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
.parallax3 {
  background-image: url(../images/seasons/natu_obi.jpg);
  width: 100%;
  height: 275px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
.parallax4 {
  background-image: url(../images/seasons/aki_obi.jpg);
  width: 100%;
  height: 275px;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
}
@media screen and (max-width:1200px) {
  .ikimono_title {
    padding: 0 20px 0 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width:700px) {
  .header {
    aspect-ratio: 2 / 3;
  }
  .ikimono_title {
    padding: 0 20px 0 20px;
    width: 70%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  .garally {
    padding: 0 30px;
    box-sizing: border-box;
  }
  .garally_subtitle {
    font-size: 20px;
  }
  .garally_seasons {
    font-size: 24px;
  }
  .season_amin {
    font-size: 22px;
    margin-top: 100px
  }
  .garally h3 {
    font-size: 20px;
  }
  .garally .number {
    font-size: 20px;
  }
  .award {
    font-size: 16px;
    text-align: left;
  }
  .award2 {
    font-size: 16px;
    text-align: left;
  }
  .award3 {
    font-size: 16px;
    text-align: left;
  }
  .garally-title {
    width: 100%;
    text-align: center;
  }
  .pc_hid {
    display: block;
  }
  .garally .contents_wrapper {
    display: block;
  }
  .garally .garally_img, .garally .description, .garally h3, .garally .img_right .garally_img {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .garally .description2 {
    width: 100%;
  }
  .Winter_description_hosi {
    width: 100%;
    margin: 0 auto;
  }
  .Winter_description {
    width: 100%;
    margin: 0 auto;
  }
  .summer_description {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .parallax {
    height: 220px;
    background-attachment: scroll;
    margin-top: 30px;
  }
  .parallax1 {
    height: 220px;
    background-attachment: scroll;
  }
  .parallax2 {
    height: 220px;
    background-attachment: scroll;
  }
  .parallax3 {
    height: 220px;
    background-attachment: scroll;
  }
  .parallax4 {
    height: 220px;
    background-attachment: scroll;
  }
}